mirror of
https://github.com/rust-windowing/winit.git
synced 2026-06-26 14:49:07 -04:00
3
.github/workflows/ci.yml
vendored
3
.github/workflows/ci.yml
vendored
@@ -111,8 +111,7 @@ jobs:
|
||||
|
||||
- name: Build and package crate for Android
|
||||
if: contains(matrix.platform.target, 'android')
|
||||
# TODO: Figure out why this build fails on Github Actions
|
||||
run: x build -p ios-xbuild-target --platform android --arch arm64
|
||||
run: x build -p android-xbuild-target --platform android --arch arm64
|
||||
|
||||
- name: Build and package crate for iOS
|
||||
if: contains(matrix.platform.target, 'ios')
|
||||
|
||||
@@ -212,7 +212,7 @@ web-sys = { version = "0.3.22", features = ['CanvasRenderingContext2d'] }
|
||||
|
||||
[workspace]
|
||||
members = [
|
||||
"android-xbuild-target",
|
||||
"ios-xbuild-target",
|
||||
"xbuild/android-target",
|
||||
"xbuild/ios-target",
|
||||
"run-wasm",
|
||||
]
|
||||
|
||||
@@ -1,3 +0,0 @@
|
||||
# android-xbuild-target
|
||||
|
||||
This is a crate that can be built via `x build` in order to simplify CI testing.
|
||||
@@ -1,3 +0,0 @@
|
||||
# ios-xbuild-target
|
||||
|
||||
This is a crate that can be built via `x build` in order to simplify CI testing.
|
||||
3
xbuild/README.md
Normal file
3
xbuild/README.md
Normal file
@@ -0,0 +1,3 @@
|
||||
# xbuild-target
|
||||
|
||||
These are crates that can be built via `x build` in order to simplify CI testing.
|
||||
@@ -2,11 +2,12 @@
|
||||
name = "android-xbuild-target"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
publish = false
|
||||
|
||||
[lib]
|
||||
crate_type = ["cdylib"]
|
||||
|
||||
[dependencies.winit]
|
||||
version = "0.29.1-beta"
|
||||
path = ".."
|
||||
features = ["android-game-activity"]
|
||||
path = "../.."
|
||||
features = ["android-native-activity"]
|
||||
@@ -2,7 +2,8 @@
|
||||
name = "ios-xbuild-target"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
publish = false
|
||||
|
||||
[dependencies.winit]
|
||||
version = "0.29.1-beta"
|
||||
path = ".."
|
||||
path = "../.."
|
||||
Reference in New Issue
Block a user