-
Notifications
You must be signed in to change notification settings - Fork 43
216 lines (187 loc) · 6.58 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
#
# 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@v3
- name: 'Set up Java'
uses: actions/setup-java@v3
with:
distribution: zulu
java-version: 21
- name: 'Cache Maven packages'
uses: actions/cache@v3
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- 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
- name: 'Upload version files'
uses: actions/upload-artifact@v2
with:
name: artifacts
path: |
HEAD
*_VERSION
# Build native executable per runner
build:
needs: [ version ]
name: 'Build with Graal on ${{ matrix.os }}'
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest, macOS-latest, windows-latest ]
runs-on: ${{ matrix.os }}
timeout-minutes: 90
steps:
- name: 'Download all build artifacts'
uses: actions/download-artifact@v2
- name: 'Read HEAD ref'
id: head
uses: juliangruber/read-file-action@v1
with:
path: artifacts/HEAD
- name: 'Check out repository'
uses: actions/checkout@v3
with:
ref: ${{ steps.head.outputs.content }}
- 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@v3
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: 'Create distribution'
run: mvn -B --file pom.xml -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@v2
with:
name: artifacts
path: toolkit-app/target/*.zip
# Collect all executables and release
release:
needs: [ build ]
runs-on: windows-latest
steps:
# must read HEAD before checkout
- name: 'Download all build artifacts'
uses: actions/download-artifact@v2
- name: 'Read HEAD ref'
id: head
uses: juliangruber/read-file-action@v1
with:
path: artifacts/HEAD
- name: 'Read versions'
shell: bash
id: version
run: |
RELEASE_VERSION=`cat artifacts/RELEASE_VERSION`
PLAIN_VERSION=`cat artifacts/PLAIN_VERSION`
NEXT_VERSION=`cat artifacts/NEXT_VERSION`
echo "RELEASE_VERSION = $RELEASE_VERSION"
echo "PLAIN_VERSION = $PLAIN_VERSION"
echo "NEXT_VERSION = $NEXT_VERSION"
echo "::set-output name=RELEASE_VERSION::$RELEASE_VERSION"
echo "::set-output name=PLAIN_VERSION::$PLAIN_VERSION"
echo "::set-output name=NEXT_VERSION::$NEXT_VERSION"
- name: 'Check out repository'
uses: actions/checkout@v3
with:
ref: ${{ steps.head.outputs.content }}
fetch-depth: 0
# checkout will clobber downloaded artifacts
# we have to download them again
- name: 'Download all build artifacts'
uses: actions/download-artifact@v2
- name: 'Set up Java'
uses: actions/setup-java@v3
with:
distribution: zulu
java-version: 21
- name: 'Cache Maven packages'
uses: actions/cache@v3
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: 'Release with JReleaser'
shell: bash
env:
JRELEASER_BRANCH: main
JRELEASER_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
JRELEASER_OVERWRITE: true
JRELEASER_UPDATE: true
JRELEASER_CHOCOLATEY_API_KEY: ${{ secrets.JRELEASER_CHOCOLATEY_API_KEY }}
JRELEASER_CHOCOLATEY_GITHUB_TOKEN: ${{ secrets.JRELEASER_CHOCOLATEY_GITHUB_TOKEN }}
run: mvn -e -B --file pom.xml -Prelease -DartifactsDir=artifacts jreleaser:full-release
- name: JReleaser output
if: always()
uses: actions/upload-artifact@v2
with:
name: jreleaser-logs
path: |
target/jreleaser/trace.log
target/jreleaser/output.properties