Skip to content

Commit

Permalink
GHA is trash
Browse files Browse the repository at this point in the history
  • Loading branch information
bbqsrc committed Oct 26, 2024
1 parent 3e37e28 commit c2f077d
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,13 @@ jobs:
- name: Run basic example
working-directory: example/basic
run: cargo ndk -o jniLibs build -vv
- name: Run openssl example
shell: ${{ runner.os == 'Windows' && 'msys2 {0}' || 'bash' }}
- name: Run openssl example (Windows)
if: runner.os == 'Windows'
shell: 'msys2 {0}'
working-directory: example/openssl
run: cargo ndk --platform 28 build -vv
- name: Run openssl example (Unix)
if: runner.os != 'Windows'
working-directory: example/openssl
run: cargo ndk --platform 28 build -vv
- name: Check code formatting
Expand Down

0 comments on commit c2f077d

Please sign in to comment.