Skip to content

Commit

Permalink
ci: Build for iOS.
Browse files Browse the repository at this point in the history
  • Loading branch information
waywardmonkeys committed Nov 14, 2023
1 parent 0abed0f commit 86232a8
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,3 +51,20 @@ jobs:

- name: cargo test
run: cargo test --workspace

build-ios:
runs-on: macos-13
name: cargo build - ios
env:
RUSTFLAGS: -D warnings
steps:
- uses: actions/checkout@v4

- name: install stable toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
target: aarch64-apple-ios

- name: cargo build
run: cargo build --target aarch64-apple-ios --all-targets --workspace

0 comments on commit 86232a8

Please sign in to comment.