Skip to content

Commit 3aeb8fe

Browse files
committed
build native libraries for mac_x86_64 platform
1 parent e4db884 commit 3aeb8fe

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@ jobs:
99
runs-on: ${{matrix.os}}
1010
strategy:
1111
matrix:
12+
os: [
13+
macos-latest, # mac_arm_64
14+
macos-13, # mac_x86_64
15+
windows-latest # win_x86_64
16+
]
1217
os: [macos-latest, windows-latest]
1318
steps:
1419
- uses: actions/checkout@v4

ghidra-publish.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ pushd build/dist
7474
unzip -d src/main/resources ${DIST_DIR}/ghidra.jar
7575

7676
# add native libraries for windows/mac - these are built on github actions in the respective 'build_natives' jobs
77-
for arch in mac_arm_64 win_x86_64
77+
for arch in mac_arm_64 mac_x86_64 win_x86_64
7878
do
7979
cp -rpv ${PROJECT_ROOT}/Ghidra/Features/Decompiler/build/os/$arch src/main/resources/_Root/Ghidra/Features/Decompiler/os/
8080
cp -rpv ${PROJECT_ROOT}/Ghidra/Features/FileFormats/build/os/$arch src/main/resources/_Root/Ghidra/Features/FileFormats/os/

0 commit comments

Comments
 (0)