-
Notifications
You must be signed in to change notification settings - Fork 9
227 lines (198 loc) · 8.27 KB
/
release.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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
name: Release
on:
push:
# tags:
# - 'v*'
permissions:
contents: write
jobs:
calculate-checksum:
runs-on: ubuntu-latest
outputs:
next_latest_tag: ${{ steps.next-latest-tag.outputs.next_latest_tag }}
prev_hash: ${{ steps.calc-checksum.outputs.prev_hash }}
hash: ${{ steps.calc-checksum.outputs.hash }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 30
fetch-tags: true
ref: ${{ github.event.repository.default_branch }}
sparse-checkout: .
- name: Get next latest tag
id: next-latest-tag
run: |
CURRENT_TAG=$(curl -s https://api.github.com/repos/${{ github.repository }}/releases/latest | jq -r '.tag_name')
PREVIOUS_TAG=$(git describe --tags --abbrev=0 $CURRENT_TAG^ --exclude release*)
echo "next_latest_tag=$PREVIOUS_TAG" >> $GITHUB_OUTPUT
- uses: actions/checkout@v4
with:
repository: 'debricked/soot-wrapper'
- name: Calculate checksum
id: calc-checksum
run: |
curl -LJO https://github.com/${{ github.repository }}/releases/download/${{ steps.next-latest-tag.outputs.next_latest_tag }}/soot-wrapper-rev-hash.txt
echo "hash=$(git rev-parse HEAD)" >> $GITHUB_OUTPUT
if [ ! -f soot-wrapper-rev-hash.txt ]; then
touch soot-wrapper-rev-hash.txt
fi
echo "prev_hash=$(cat soot-wrapper-rev-hash.txt)" >> $GITHUB_OUTPUT
- name: Store soot-wrapper revision hash
run: |
echo ${{ steps.calc-checksum.outputs.hash }} > soot-wrapper-rev-hash.txt
- name: Upload file containing soot-wrapper revision hash
uses: actions/upload-artifact@v4
with:
name: soot-wrapper-rev-hash.txt
path: soot-wrapper-rev-hash.txt
overwrite: 'true'
soot-wrapper:
needs: calculate-checksum
runs-on: ubuntu-24.04
strategy:
matrix:
java-version: [ 11, 17, 21 ]
steps:
- uses: actions/checkout@v4
with:
repository: 'debricked/soot-wrapper'
- name: Pull JAR from previous release if already built
if: needs.calculate-checksum.outputs.hash == needs.calculate-checksum.outputs.prev_hash
run: |
curl -LJO https://github.com/${{ github.repository }}/releases/download/${{ needs.calculate-checksum.outputs.next_latest_tag }}/soot-wrapper-${{ matrix.java-version }}.zip
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Set up JDK ${{ matrix.java-version }}
if: needs.calculate-checksum.outputs.hash != needs.calculate-checksum.outputs.prev_hash
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java-version }}
distribution: 'adopt'
- name: Build with Maven
if: needs.calculate-checksum.outputs.hash != needs.calculate-checksum.outputs.prev_hash
run: |
cd java/common/
mvn clean package -X -DskipTests
- uses: awalsh128/cache-apt-pkgs-action@latest
if: needs.calculate-checksum.outputs.hash != needs.calculate-checksum.outputs.prev_hash
with:
packages: xq
version: 1.0
- name: Create archive with generated JARs
if: needs.calculate-checksum.outputs.hash != needs.calculate-checksum.outputs.prev_hash
run: |
cd java/common/target/
zip soot-wrapper-${{ matrix.java-version }}.zip SootWrapper-$(xq -x 'project/version' ../pom.xml).jar // Use only the jar which includes dependencies
mv soot-wrapper-${{ matrix.java-version }}.zip ../../../soot-wrapper-${{ matrix.java-version }}.zip
- name: Upload the archive
uses: actions/upload-artifact@v4
with:
name: soot-wrapper-${{ matrix.java-version }}.zip
path: soot-wrapper-${{ matrix.java-version }}.zip
overwrite: 'true'
# goreleaser:
# runs-on: ubuntu-latest
# needs: soot-wrapper
# steps:
# - uses: actions/checkout@v4
# with:
# fetch-depth: 0
# - run: git fetch --force --tags
# - uses: actions/setup-go@v5
# with:
# go-version: '>=1.20'
# cache: true
# - name: Import GPG signing key
# id: import_gpg
# uses: crazy-max/ghaction-import-gpg@v6
# with:
# gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
# passphrase: ${{ secrets.GPG_PASSPHRASE }}
# - name: Pull Supported Formats
# run: |
# cd cmd/debricked
# go generate -v -x
# - uses: goreleaser/goreleaser-action@v6
# with:
# distribution: goreleaser
# version: latest
# args: release --clean
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# GPG_FINGERPRINT: ${{ steps.import_gpg.outputs.fingerprint }}
# - name: Download JAR archives
# uses: actions/download-artifact@v4
# - name: Add archives with JARs to release
# uses: softprops/action-gh-release@v2
# if: startsWith(github.ref, 'refs/tags/')
# with:
# tag_name: ${{ github.ref_name }}
# files: |
# soot-wrapper-rev-hash.txt/soot-wrapper-rev-hash.txt
# soot-wrapper-11.zip/soot-wrapper-11.zip
# soot-wrapper-17.zip/soot-wrapper-17.zip
# soot-wrapper-21.zip/soot-wrapper-21.zip
# major-release:
# runs-on: ubuntu-latest
# needs: goreleaser
# steps:
# - uses: actions/checkout@v4
# with:
# fetch-depth: 0
# - name: Update major release tag
# id: major-tag
# run: |
# # returns v1, v2, etc, everything to the left of the leftmost dot.
# MAJOR_VERSION="${GITHUB_REF_NAME%%.*}"
# MAJOR_TAG="release-${MAJOR_VERSION}"
# echo "MAJOR_VERSION=${MAJOR_VERSION}" >> "$GITHUB_OUTPUT"
# echo "MAJOR_TAG=${MAJOR_TAG}" >> "$GITHUB_OUTPUT"
# git tag -f "${MAJOR_TAG}"
# git push -f origin "${MAJOR_TAG}"
# - name: Fetch assets from actual release
# env:
# MAJOR_TAG: ${{ steps.major-tag.outputs.MAJOR_TAG }}
# GH_TOKEN: ${{ github.token }}
# run: |
# gh release download --pattern="cli_*.tar.gz" "${GITHUB_REF_NAME}"
# - name: Create or update release
# uses: softprops/action-gh-release@v2
# with:
# body: Latest release for the ${{ steps.major-tag.outputs.MAJOR_VERSION }} branch of the CLI
# name: Latest ${{ steps.major-tag.outputs.MAJOR_VERSION }} CLI
# tag_name: ${{ steps.major-tag.outputs.MAJOR_TAG }}
# fail_on_unmatched_files: true
# make_latest: false
# files: "cli_*.tar.gz"
# aur:
# runs-on: ubuntu-latest
# needs: goreleaser
# container:
# image: archlinux/archlinux:base-devel
# steps:
# - name: Prepare Arch Linux container
# run: |
# pacman -Syu --noconfirm git go openssh pacman-contrib
# useradd -m aur
# # Setup SSH access to aur.archlinux.org
# - uses: webfactory/[email protected]
# with:
# ssh-private-key: ${{ secrets.AUR_SSH_PRIVATE_KEY }}
# # Now actually clone AUR repo, and update to new version
# - name: Build package and update AUR
# run: |
# export NEW_VERSION="${GITHUB_REF_NAME#v}"
# sudo -u aur sh -c "mkdir -p /home/aur/.ssh && chmod 700 /home/aur/.ssh && touch /home/aur/.ssh/known_hosts && chmod 600 /home/aur/.ssh/known_hosts"
# sudo -u aur sh -c "echo 'aur.archlinux.org ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEuBKrPzbawxA/k2g6NcyV5jmqwJ2s+zpgZGZ7tpLIcN' >> /home/aur/.ssh/known_hosts"
# mkdir -p /root/.ssh && chmod 700 /root/.ssh && cp /home/aur/.ssh/known_hosts /root/.ssh/known_hosts && chown root: /root/.ssh/known_hosts
# # clone repo
# git clone [email protected]:debricked.git debricked
# chown -R aur debricked/
# cd debricked/
# sudo -u aur NEW_VERSION="${NEW_VERSION}" make update_version
# sudo -u aur make package
# sudo -u aur git diff
# sudo -u aur git config user.email [email protected]
# sudo -u aur git config user.name "Debricked build bot"
# git config --global --add safe.directory "$PWD"
# make push