Skip to content

Commit 9a76491

Browse files
committed
Attempt to build pod on github actions.
1 parent a516045 commit 9a76491

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

.github/workflows/ios.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
run: |
29+
./build-pod.sh

0 commit comments

Comments
 (0)