Skip to content

Commit 5331856

Browse files
committed
Fix component.
1 parent 620f5d8 commit 5331856

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/android.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
name: "android"
55
jobs:
66
build:
7-
name: Building iOS Pod on ${{ matrix.os }}
7+
name: Building Android on ${{ matrix.os }}
88
runs-on: ${{ matrix.os }}
99
strategy:
1010
matrix:
@@ -30,6 +30,6 @@ jobs:
3030
i686-linux-android
3131
cargo install cargo-ndk
3232
33-
- name: Build Pod
33+
- name: Build for Android
3434
run: |
3535
cargo ndk -t armeabi-v7a -t arm64-v8a -o ./jniLibs build --release -Zbuild-std -p powersync_loadable

.github/workflows/ios.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
name: "ios"
55
jobs:
66
build:
7-
name: Building Android on ${{ matrix.os }}
7+
name: Building iOS on ${{ matrix.os }}
88
runs-on: ${{ matrix.os }}
99
strategy:
1010
matrix:
@@ -17,8 +17,8 @@ jobs:
1717

1818
- name: Setup
1919
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
20+
rustup toolchain install nightly-2023-08-28-x86_64-apple-darwin
21+
rustup component add rust-src --toolchain nightly-2023-08-28-x86_64-apple-darwin
2222
rustup target add \
2323
aarch64-apple-ios \
2424
aarch64-apple-ios-sim \

0 commit comments

Comments
 (0)