-
Notifications
You must be signed in to change notification settings - Fork 1
137 lines (123 loc) · 3.83 KB
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
name: Build
on:
push:
branches:
- "main"
- "release/*"
pull_request:
concurrency:
group: "${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}"
cancel-in-progress: true
jobs:
# Prepare environment and build the plugin
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Fetch Sources
uses: actions/checkout@v4
with:
submodules: recursive
# Validate wrapper
- name: Gradle Wrapper Validation
uses: gradle/wrapper-validation-action@v2
- name: Setup Java
uses: actions/setup-java@v4
with:
distribution: zulu
java-version: 17
# Setup Gradle
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3
with:
gradle-home-cache-cleanup: true
build-scan-publish: true
build-scan-terms-of-use-url: "https://gradle.com/terms-of-service"
build-scan-terms-of-use-agree: "yes"
- name: Restore Ghidra Dependency cache
id: cache-ghidra
uses: actions/cache/restore@v4
with:
path: ghidra/dependencies
key: "${{ runner.os }}-ghidra-dependencies-${{ hashFiles('**/fetchDependencies.gradle') }}"
- name: Fetch Ghidra Dependencies
if: steps.cache-ghidra.outputs.cache-hit != 'true'
run: |
gradle -I gradle/support/fetchDependencies.gradle init
working-directory: ghidra
- name: Save Ghidra Dependency cache
uses: actions/cache/save@v4
with:
path: ghidra/dependencies
key: ${{ steps.cache-ghidra.outputs.cache-primary-key }}
if: steps.cache-ghidra.outputs.cache-hit != 'true'
# Build plugin
- name: Build plugin
run: ./gradlew assembleDist
# Store already-built plugin as an artifact for downloading
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: artifacts-ghidralite-extension
path: ghidralite-extension/build/dist/*.zip
# Run tests and upload a code coverage report
# test:
# name: Test
# needs: [ build ]
# runs-on: ubuntu-latest
# steps:
#
# # Check out current repository
# - name: Fetch Sources
# uses: actions/checkout@v4
#
# # Setup Gradle
# - name: Setup Gradle
# uses: gradle/actions/setup-gradle@v3
# with:
# gradle-home-cache-cleanup: true
#
# # Run tests
# - name: Run Tests
# run: ./gradlew check
#
# # Collect Tests Result of failed tests
# - name: Collect Tests Result
# if: ${{ failure() }}
# uses: actions/upload-artifact@v4
# with:
# name: tests-result
# path: ${{ github.workspace }}/build/reports/tests
#
# # Upload the Kover report to CodeCov
# - name: Upload Code Coverage Report
# uses: codecov/codecov-action@v4
# with:
# files: ${{ github.workspace }}/build/reports/kover/report.xml
release:
name: Release draft
if: github.event_name != 'pull_request'
needs: [ build ]
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
steps:
- name: Fetch Sources
uses: actions/checkout@v4
- uses: google-github-actions/release-please-action@v4
id: release-please
with:
config-file: .github/release-please-config.json
release-type: simple
- name: "Download Github Artifacts"
uses: actions/download-artifact@v4
with:
pattern: artifacts-*
path: artifacts
merge-multiple: true
- name: Upload Release Asset
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: gh release upload --clobber ${{ steps.release-please.outputs.tag_name }} ./artifacts/*
if: ${{ steps.release.outputs.release_created }}