File tree Expand file tree Collapse file tree 2 files changed +28
-1
lines changed Expand file tree Collapse file tree 2 files changed +28
-1
lines changed Original file line number Diff line number Diff line change 1+ name : build native libraries
2+ on :
3+ workflow_dispatch : # allow to manually trigger this workflow
4+ push :
5+ branches :
6+ - michael/github-actions-debug
7+ jobs :
8+ natives :
9+ runs-on : ubuntu-latest
10+ steps :
11+ - uses : actions/checkout@v4
12+ with :
13+ fetch-depth : 0
14+ - name : Set up JDK
15+ uses : actions/setup-java@v4
16+ with :
17+ distribution : temurin
18+ java-version : 21
19+ cache : sbt
20+ - name : Setup Gradle
21+ uses : gradle/actions/setup-gradle@v4
22+ - run : gradle buildNatives
23+ - name : Upload decompiler
24+ uses : actions/upload-artifact@v4
25+ with :
26+ path : target/joern-cli.zip
27+ if-no-files-found : error
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ rm -rf build
3333sed -i s/__RELEASE_NAME__/${MINOR_VERSION} / Ghidra/application.properties
3434
3535# build ghidra (we'll check and handle the exit code further down in case it fails...)
36- gradle -I gradle/support/fetchDependencies.gradle buildGhidra
36+ gradle buildGhidra
3737BUILD_EXIT_CODE=$?
3838
3939# revert the change we made above in application.properties: back to the placeholder
You can’t perform that action at this time.
0 commit comments