Skip to content

Commit 2c08d6b

Browse files
ci: Build for iOS.
1 parent 0abed0f commit 2c08d6b

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/ci.yml

+17
Original file line numberDiff line numberDiff line change
@@ -51,3 +51,20 @@ jobs:
5151

5252
- name: cargo test
5353
run: cargo test --workspace
54+
55+
build-ios:
56+
runs-on: macos-13
57+
name: cargo build - ios
58+
env:
59+
RUSTFLAGS: -D warnings
60+
steps:
61+
- uses: actions/checkout@v4
62+
63+
- name: install stable toolchain
64+
uses: dtolnay/rust-toolchain@master
65+
with:
66+
toolchain: stable
67+
target: aarch64-apple-ios
68+
69+
- name: cargo build
70+
run: cargo build --target aarch64-apple-ios --all-targets --workspace

0 commit comments

Comments
 (0)