Skip to content

Commit bb07879

Browse files
committed
fix egui
1 parent 81f5b62 commit bb07879

File tree

4 files changed

+14
-7
lines changed

4 files changed

+14
-7
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -61,12 +61,13 @@ jobs:
6161
with:
6262
workspaces: "./bevy_ios_iap_egui"
6363

64-
- name: Check iOS Sim
65-
run: |
66-
cd bevy_ios_iap_egui
67-
cargo c --target=aarch64-apple-ios-sim
68-
cargo b --target=aarch64-apple-ios-sim
69-
cargo clippy --target=aarch64-apple-ios-sim
64+
# TODO: enable once https://github.com/rust-lang/rust-bindgen/issues/3181 is released
65+
# - name: Check iOS Sim
66+
# run: |
67+
# cd bevy_ios_iap_egui
68+
# cargo c --target=aarch64-apple-ios-sim
69+
# cargo b --target=aarch64-apple-ios-sim
70+
# cargo clippy --target=aarch64-apple-ios-sim
7071

7172
- name: Check iOS
7273
run: |

bevy_ios_iap_egui/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.2.0"
44
edition = "2021"
55

66
[dependencies]
7-
bevy_ios_iap = "0.7.0"
7+
bevy_ios_iap = { path = "../bevy_ios_iap" }
88
bevy = { version = "0.16", default-features = false }
99
bevy_egui = { version = "0.34", default-features = false }
1010
egui_extras = { version = "0.31" }

bevy_ios_iap_egui/justfile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
check:
2+
cargo c
3+
cargo c --target=aarch64-apple-ios
4+
cargo clippy
5+
cargo fmt -- --check

justfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
check:
22
cd ./bevy_ios_iap/ && just check
3+
cd ./bevy_ios_iap_egui/ && just check
34

45
build-rust-release:
56
./bevy_ios_iap/build-rust-release.sh

0 commit comments

Comments
 (0)