We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a516045 commit 9a76491Copy full SHA for 9a76491
.github/workflows/ios.yml
@@ -0,0 +1,29 @@
1
+on:
2
+ push:
3
+ pull_request:
4
+name: "rs-android"
5
+jobs:
6
+ build:
7
+ name: Building Android on ${{ matrix.os }}
8
+ runs-on: ${{ matrix.os }}
9
+ strategy:
10
+ matrix:
11
+ include:
12
+ - os: macos-latest
13
+ steps:
14
+ - uses: actions/checkout@v3
15
+ with:
16
+ submodules: true
17
+
18
+ - name: Setup
19
+ run: |
20
+ rustup toolchain install nightly-2023-08-28-x86_64-unknown-linux-gnu
21
+ rustup component add rust-src --toolchain nightly-2023-08-28-x86_64-unknown-linux-gnu
22
+ rustup target add \
23
+ aarch64-apple-ios \
24
+ aarch64-apple-ios-sim \
25
+ x86_64-apple-ios
26
27
+ - name: Build iOS Pod
28
29
+ ./build-pod.sh
0 commit comments