Skip to content

Commit

Permalink
Add checks for ios as well
Browse files Browse the repository at this point in the history
  • Loading branch information
bltavares committed Jun 30, 2020
1 parent be02374 commit 066a040
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/cross_compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,24 @@ jobs:
use-cross: true
command: build
args: --target=${{ matrix.target }} --examples

ios:
name: iOS Build
runs-on: macos-latest
strategy:
matrix:
target:
- aarch64-apple-ios
- x86_64-apple-ios
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
target: ${{ matrix.target }}
override: true
- uses: actions-rs/cargo@v1
with:
use-cross: true
command: build
args: --target=${{ matrix.target }} --examples

0 comments on commit 066a040

Please # to comment.