File tree Expand file tree Collapse file tree 3 files changed +38
-39
lines changed Expand file tree Collapse file tree 3 files changed +38
-39
lines changed Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ name : release
2+ on :
3+ workflow_dispatch : # allow to manually trigger this workflow
4+ push :
5+ branches :
6+ - michael/github-actions-debug
7+ jobs :
8+ build-natives :
9+ runs-on : ubuntu-latest
10+ steps :
11+ # TODO back to the real build once the upload/download wiring works
12+ # - uses: actions/checkout@v4
13+ # with:
14+ # fetch-depth: 0
15+ # - name: Set up JDK
16+ # uses: actions/setup-java@v4
17+ # with:
18+ # distribution: temurin
19+ # java-version: 21
20+ # - name: Setup Gradle
21+ # uses: gradle/actions/setup-gradle@v4
22+ # - run: gradle -I gradle/support/fetchDependencies.gradle buildNatives
23+ - name : for simplicity just quickly create some dummy files
24+ - run : |
25+ mkdir -p Ghidra/Features/Decompiler/build/os
26+ echo aaa > Ghidra/Features/Decompiler/build/os/decompile
27+ echo bbb > Ghidra/Features/Decompiler/build/os/sleigh
28+ - name : Upload decompiler
29+ uses : actions/upload-artifact@v4
30+ with :
31+ path : Ghidra/Features/Decompiler/build/os/*
32+ if-no-files-found : error
33+ release :
34+ runs-on : ubuntu-latest
35+ steps :
36+ - uses : actions/download-artifact@v4
37+ - name : Display structure of downloaded files
38+ run : ls -R
You can’t perform that action at this time.
0 commit comments