Review comments

Signed-off-by: John Nunley <dev@notgull.net>
This commit is contained in:
John Nunley
2023-10-14 21:36:54 -07:00
parent 9382b7238c
commit d3657449ab
9 changed files with 11 additions and 13 deletions

View File

@@ -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')

View File

@@ -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",
]

View File

@@ -1,3 +0,0 @@
# android-xbuild-target
This is a crate that can be built via `x build` in order to simplify CI testing.

View File

@@ -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
View File

@@ -0,0 +1,3 @@
# xbuild-target
These are crates that can be built via `x build` in order to simplify CI testing.

View File

@@ -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"]

View File

@@ -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 = "../.."