Skip to content

Commit

Permalink
Adjust release workflow for arm64 mac z3
Browse files Browse the repository at this point in the history
  • Loading branch information
edmcman committed Dec 3, 2024
1 parent 5b08ff1 commit bdbe663
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion .github/workflows/release_on_tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ jobs:
- name: Unzip Ghidra ${{ matrix.ghidra_version }}
run: 7z x 3rdparty/ghidra_${{ matrix.ghidra_version }}_*.zip -o3rdparty/

# ejs: Ummm, macro anyone?

- name: Download Z3 for Linux x64 (glibc)
uses: robinraju/[email protected]
with:
Expand Down Expand Up @@ -74,7 +76,20 @@ jobs:
cp z3-4.12.1-x64-osx-10.16/bin/*.dylib ${{ github.workspace }}/os/mac_x86_64/
rm z3-4.12.1-x64-osx-10.16.zip
rm -r z3-4.12.1-x64-osx-10.16/
- name: Download Z3 for MacOS arm64
uses: robinraju/[email protected]
with:
repository: "Z3Prover/z3"
tag: "z3-4.12.1"
fileName: "z3-4.12.1-arm64-osx-10.16.zip"
- name: Unzip Z3 for MacOS arm64
run: |
7z x z3-4.12.1-arm64-osx-10.16.zip
cp z3-4.12.1-arm64-osx-10.16/bin/*.dylib ${{ github.workspace }}/os/mac_arm_64/
rm z3-4.12.1-arm64-osx-10.16.zip
rm -r z3-4.12.1-arm64-osx-10.16/
- name: Set up Gradle
uses: gradle/gradle-build-action@v2
with:
Expand Down

0 comments on commit bdbe663

Please sign in to comment.