mirror of
https://github.com/rust-windowing/winit.git
synced 2026-09-02 14:50:04 -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
|
- name: Build and package crate for Android
|
||||||
if: contains(matrix.platform.target, 'android')
|
if: contains(matrix.platform.target, 'android')
|
||||||
# TODO: Figure out why this build fails on Github Actions
|
run: x build -p android-xbuild-target --platform android --arch arm64
|
||||||
run: x build -p ios-xbuild-target --platform android --arch arm64
|
|
||||||
|
|
||||||
- name: Build and package crate for iOS
|
- name: Build and package crate for iOS
|
||||||
if: contains(matrix.platform.target, 'ios')
|
if: contains(matrix.platform.target, 'ios')
|
||||||
|
|||||||
@@ -212,7 +212,7 @@ web-sys = { version = "0.3.22", features = ['CanvasRenderingContext2d'] }
|
|||||||
|
|
||||||
[workspace]
|
[workspace]
|
||||||
members = [
|
members = [
|
||||||
"android-xbuild-target",
|
"xbuild/android-target",
|
||||||
"ios-xbuild-target",
|
"xbuild/ios-target",
|
||||||
"run-wasm",
|
"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"
|
name = "android-xbuild-target"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
publish = false
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
crate_type = ["cdylib"]
|
crate_type = ["cdylib"]
|
||||||
|
|
||||||
[dependencies.winit]
|
[dependencies.winit]
|
||||||
version = "0.29.1-beta"
|
version = "0.29.1-beta"
|
||||||
path = ".."
|
path = "../.."
|
||||||
features = ["android-game-activity"]
|
features = ["android-native-activity"]
|
||||||
@@ -2,7 +2,8 @@
|
|||||||
name = "ios-xbuild-target"
|
name = "ios-xbuild-target"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
publish = false
|
||||||
|
|
||||||
[dependencies.winit]
|
[dependencies.winit]
|
||||||
version = "0.29.1-beta"
|
version = "0.29.1-beta"
|
||||||
path = ".."
|
path = "../.."
|
||||||
Reference in New Issue
Block a user