-
Notifications
You must be signed in to change notification settings - Fork 43
255 lines (216 loc) · 7.4 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
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
#
# Copyright 2022 The original authors
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
name: Release
on:
workflow_dispatch:
inputs:
version:
description: "Release version"
required: true
next:
description: "Next version"
required: false
jobs:
version:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: 'Set up Java'
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '21'
- name: 'Cache Maven packages'
uses: actions/cache@v4
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}-${{ github.sha }}
- name: 'Set release version'
id: version
run: |
echo ${{ github.event.inputs.version }}
RELEASE_VERSION=${{ github.event.inputs.version }}
NEXT_VERSION=${{ github.event.inputs.next }}
PLAIN_VERSION=`echo ${RELEASE_VERSION} | awk 'match($0, /^(0|[1-9][0-9]*)\.(0|[1-9][0-9]*)\.(0|[1-9][0-9]*)/) { print substr($0, RSTART, RLENGTH); }'`
COMPUTED_NEXT_VERSION="${PLAIN_VERSION}-SNAPSHOT"
if [ -z $NEXT_VERSION ]
then
NEXT_VERSION=$COMPUTED_NEXT_VERSION
fi
mvn -B versions:set versions:commit -DnewVersion=$RELEASE_VERSION
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
git config --global user.name "GitHub Action"
git commit -a -m "🏁 Releasing version $RELEASE_VERSION"
git push
echo "removed: origin HEAD:main"
git rev-parse HEAD > HEAD
echo $RELEASE_VERSION > RELEASE_VERSION
echo $PLAIN_VERSION > PLAIN_VERSION
echo $NEXT_VERSION > NEXT_VERSION
echo "refName=${GITHUB_REF##*/}" >> $GITHUB_ENV
- name: 'Upload version files'
uses: actions/upload-artifact@v4
with:
name: artifacts
path: |
HEAD
*_VERSION
create_binaries:
runs-on: ubuntu-latest
steps:
- name: 'Set up JDK'
uses: actions/setup-java@v4
with:
distribution: zulu
java-version: 21
- name: 'Prepare branch name'
run: >
echo "refName=${GITHUB_REF##*/}" >> $GITHUB_ENV
- name: 'Checkout relevant branch'
uses: actions/checkout@v4
with:
ref: ${{ env.refName }}
- name: 'Cache Maven packages'
uses: actions/cache@v4
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}-${{ github.sha }}
- name: 'Make mvnw executable'
run: |
chmod +x mvnw
chmod +x mvnw.cmd
- name: 'Create distribution'
run: >
./mvnw --no-transfer-progress -DskipTests -pl iot.technology:toolkit-app -am package
- name: 'Upload build artifact'
uses: actions/upload-artifact@v4
with:
name: artifacts-jvm
path: toolkit-app/target/*.zip
# Build native executable per runner
build:
needs: [ version ]
name: 'Build with Graal on ${{ matrix.os }}'
strategy:
fail-fast: true
matrix:
os: [ ubuntu-latest, macOS-latest, windows-latest ]
runs-on: ${{ matrix.os }}
timeout-minutes: 90
steps:
- name: 'Prepare git'
run: git config --global core.autocrlf false
- name: 'Prepare branch name'
run: >
echo "refName=${GITHUB_REF##*/}" >> $GITHUB_ENV
- name: 'Checkout relevant branch'
uses: actions/checkout@v4
with:
ref: ${{ env.refName }}
- name: Install upx in Linux
run: sudo apt-get install upx
if: ${{ runner.os == 'Linux' }}
- name: Install upx in macOS
run: brew install upx
if: ${{ runner.os == 'macOS' }}
- name: Install upx in Windows
run: choco install upx
if: ${{ runner.os == 'Windows' }}
- name: 'Set up Graal'
uses: graalvm/setup-graalvm@v1
with:
distribution: 'graalvm-community'
java-version: '21'
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: 'Cache Maven packages'
uses: actions/cache@v4
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
- name: 'Make mvnw executable'
run: |
chmod +x mvnw
chmod +x mvnw.cmd
- name: 'Create distribution'
run: >
./mvnw --no-transfer-progress -Pnative -DskipTests -pl iot.technology:toolkit-app package -am
- name: 'Smoke test'
run: >
./toolkit-app/target/toolkit -V
- name: 'Upload build artifact'
uses: actions/upload-artifact@v4
with:
name: artifacts-${{ matrix.os }}
path: |
toolkit-app/target/toolkit-app*.zip
!toolkit-app/target/toolkit-app-${{ env.refName }}.jar
# Collect all executables and release
release:
needs: [ build ]
runs-on: windows-latest
steps:
- name: 'Prepare branch name'
run: >
echo "refName=${GITHUB_REF##*/}" >> $GITHUB_ENV
- name: 'Checkout relevant branch'
uses: actions/checkout@v4
with:
ref: ${{ env.refName }}
fetch-depth: 0
- name: 'Download all build artifacts'
uses: actions/download-artifact@v4
with:
pattern: artifacts-*
path: all-artifacts
- name: 'Merge all artifacts'
run: |
mkdir merged-artifact
for /d %%D in (all-artifacts\*) do (
xcopy /E /I "%%D" merged-artifact\
)
- name: Upload merged artifact
uses: actions/upload-artifact@v4
with:
name: release-artifact # 合并后的工件名称
path: merged-artifact\
- name: 'Restore Maven packages'
uses: actions/cache@v4
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}-${{ github.sha }}
restore-keys: ${{ runner.os }}-m2
- name: 'Make mvnw executable'
run: |
chmod +x mvnw
chmod +x mvnw.cmd
- name: 'Release with JReleaser'
shell: bash
env:
JRELEASER_BRANCH: main
JRELEASER_UPDATE: true
JRELEASER_OVERWRITE: true
JRELEASER_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
JRELEASER_CHOCOLATEY_API_KEY: ${{ secrets.JRELEASER_CHOCOLATEY_API_KEY }}
JRELEASER_CHOCOLATEY_GITHUB_TOKEN: ${{ secrets.JRELEASER_CHOCOLATEY_GITHUB_TOKEN }}
run: ./mvnw --no-transfer-progress -Prelease -pl :iot-toolkit -DartifactsDir=release-artifact jreleaser:full-release
- name: JReleaser output
if: always()
uses: actions/upload-artifact@v4
with:
name: jreleaser-logs
path: |
target/jreleaser/trace.log
target/jreleaser/output.properties