Skip to content

Commit

Permalink
Make it do fewer builds
Browse files Browse the repository at this point in the history
  • Loading branch information
bbqsrc committed Oct 26, 2024
1 parent 92d44c2 commit d892b92
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,16 +34,16 @@ jobs:
run: cargo ndk-env
- name: Run basic example
working-directory: example/basic
run: cargo ndk -o jniLibs build -vv
run: cargo ndk -t armeabi-v7a -o jniLibs build -vv
- name: Run openssl example (Windows)
if: runner.os == 'Windows'
shell: 'msys2 {0}'
working-directory: example/openssl
run: cargo ndk --platform 28 build -vv
run: cargo ndk -t arm64-v8a --platform 28 build -vv
- name: Run openssl example (Unix)
if: runner.os != 'Windows'
working-directory: example/openssl
run: cargo ndk --platform 28 build -vv
run: cargo ndk -t arm64-v8a --platform 28 build -vv
- name: Check code formatting
continue-on-error: true
run: cargo fmt --all -- --check
Expand Down

0 comments on commit d892b92

Please sign in to comment.