Skip to content
This repository has been archived by the owner on Nov 29, 2023. It is now read-only.

Commit

Permalink
fix if condition
Browse files Browse the repository at this point in the history
  • Loading branch information
olomix committed Oct 12, 2023
1 parent 306cec9 commit 5769ced
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,10 @@ jobs:
key: ${{ runner.os }}-gmp-${{ hashFiles('build_gmp.sh') }}

- name: build gmp android arm64
if: "! -d depends/gmp/package_android_arm64"
run: ./build_gmp.sh android
run: if [[ ! -d "depends/gmp/package_android_arm64" ]]; then ./build_gmp.sh android; fi

- name: build gmp android x86_64
if: "! -d depends/gmp/package_android_x86_64"
run: ./build_gmp.sh android_x86_64
run: if [[ ! -d "depends/gmp/package_android_x86_64" ]]; then ./build_gmp.sh android_x86_64; fi

- name: Build prover Android ARM64
run: |
Expand Down

0 comments on commit 5769ced

Please sign in to comment.