Skip to content

Commit

Permalink
Try again
Browse files Browse the repository at this point in the history
  • Loading branch information
giarc3 committed Oct 26, 2023
1 parent 0b9b716 commit 3573f14
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: ${{ matrix.folder-name }}
path: android/ironoxide-android/src/main/
path: android/ironoxide-android/src/main/android_build.zip

# As the currently available emulators cannot use arm64-v8a architecture, we are currently only testing x86/x86_64.
# This can be added in when either of the following happens:
Expand All @@ -95,7 +95,7 @@ jobs:
with:
name: ${{ matrix.arch }}
- name: Unzip Android build
run: unzip -o ${{ matrix.arch }}/android_build.zip -d android/ironoxide-android/src/main
run: unzip -o android_build.zip -d android/ironoxide-android/src/main
- name: Run tests
uses: reactivecircus/android-emulator-runner@v2
with:
Expand Down Expand Up @@ -141,11 +141,13 @@ jobs:
cpp-build:
strategy:
matrix:
os: [ubuntu-22.04, macos-11]
os: [ubuntu-22.04, macos-12]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: IronCoreLabs/rust-toolchain@v1
with:
toolchain: stable
- name: Build and test
run: |
cargo build --release -p ironoxide-cpp
Expand Down

0 comments on commit 3573f14

Please sign in to comment.