Skip to content

Commit 43422b8

Browse files
committed
wip
1 parent 5dee15d commit 43422b8

File tree

2 files changed

+28
-1
lines changed

2 files changed

+28
-1
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
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

ghidra-publish.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ rm -rf build
3333
sed -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
3737
BUILD_EXIT_CODE=$?
3838

3939
# revert the change we made above in application.properties: back to the placeholder

0 commit comments

Comments
 (0)