Skip to content

Commit cdf30a7

Browse files
committed
WIP
1 parent c3313a0 commit cdf30a7

File tree

3 files changed

+38
-39
lines changed

3 files changed

+38
-39
lines changed

.github/workflows/build-natives.yaml

Lines changed: 0 additions & 26 deletions
This file was deleted.

.github/workflows/release.yaml

Lines changed: 0 additions & 13 deletions
This file was deleted.

.github/workflows/release.yml

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

0 commit comments

Comments
 (0)