-
Notifications
You must be signed in to change notification settings - Fork 30
230 lines (202 loc) · 7.52 KB
/
release.yml
File metadata and controls
230 lines (202 loc) · 7.52 KB
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
#
# SPDX-License-Identifier: Apache-2.0
# Copyright (c) The original authors
#
# Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0
#
name: Releases
on:
workflow_dispatch:
inputs:
version:
description: "Release version"
required: true
next:
description: "Next version"
required: false
env:
JAVA_VERSION: '25'
JAVA_DISTRO: 'zulu'
GRAAL_DISTRIBUTION: 'graalvm-community'
permissions:
contents: read
jobs:
set-release-version:
runs-on: ubuntu-latest
permissions:
contents: write
outputs:
HEAD: ${{ steps.version.outputs.HEAD }}
RELEASE_VERSION: ${{ steps.version.outputs.RELEASE_VERSION }}
NEXT_VERSION: ${{ steps.version.outputs.NEXT_VERSION }}
BRANCH_NAME: ${{ github.ref_name }}
steps:
- name: 'Checkout GitHub repository'
uses: actions/checkout@v4
with:
clean: true
- name: 'Set up Java'
uses: actions/setup-java@v5
with:
java-version: ${{ env.JAVA_VERSION }}
distribution: ${{ env.JAVA_DISTRO }}
check-latest: true
cache: maven
- name: 'Import GPG key'
uses: crazy-max/ghaction-import-gpg@v7
with:
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
passphrase: ${{ secrets.GPG_PASSPHRASE }}
- name: 'Configure Git'
run: |
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
git config --global user.name "github-actions[bot]"
- name: 'Set release version'
id: version
env:
RELEASE_VERSION: ${{ github.event.inputs.version }}
NEXT_VERSION: ${{ github.event.inputs.next }}
run: |
if [ -z "$NEXT_VERSION" ]
then
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); }'`
NEXT_VERSION="${PLAIN_VERSION}-SNAPSHOT"
fi
chmod +x ./mvnw
./mvnw -ntp -B versions:set versions:commit -DnewVersion=$RELEASE_VERSION
find . -name 'pom.xml' | xargs git add
git commit -m "ci: release version $RELEASE_VERSION 🎉"
git push --atomic origin HEAD:${GITHUB_REF#refs/heads/}
HEAD=$(git rev-parse HEAD)
echo "HEAD=$HEAD" >> $GITHUB_OUTPUT
echo "RELEASE_VERSION=$RELEASE_VERSION" >> $GITHUB_OUTPUT
echo "NEXT_VERSION=$NEXT_VERSION" >> $GITHUB_OUTPUT
build-distribution:
needs: [ set-release-version ]
name: 'Build with GraalVM on ${{ matrix.os }}'
permissions:
contents: read
strategy:
fail-fast: true
matrix:
os: [ ubuntu-latest, macOS-latest, windows-latest ]
setup: [ graalvm ]
include:
- os: ubuntu-latest
setup: java
runs-on: ${{ matrix.os }}
steps:
- name: 'Checkout GitHub repository'
uses: actions/checkout@v4
with:
ref: ${{ needs.set-release-version.outputs.HEAD }}
fetch-depth: 0
clean: true
- name: 'Add Developer Command Prompt for Microsoft Visual C++'
if: ${{ runner.os == 'Windows' }}
uses: ilammy/msvc-dev-cmd@v1
- name: 'Set up GraalVM'
if: ${{ matrix.setup == 'graalvm' }}
uses: graalvm/setup-graalvm@v1
with:
java-version: ${{ env.JAVA_VERSION }}
distribution: ${{ env.GRAAL_DISTRIBUTION }}
github-token: ${{ secrets.GITHUB_TOKEN }}
native-image-job-reports: 'true'
- name: 'Set up Java'
if: ${{ matrix.setup == 'java' }}
uses: actions/setup-java@v5
with:
distribution: ${{ env.JAVA_DISTRO }}
java-version: ${{ env.JAVA_VERSION }}
- name: 'Cache Maven packages'
uses: actions/cache@v5
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-maven-
- name: 'Build Native Image (Linux)'
if: ${{ runner.os == 'Linux' && matrix.setup == 'graalvm' }}
run: |
./mvnw -ntp -B --file pom.xml -Pnative package -DskipTests
- name: 'Build Native Image (macOS)'
if: ${{ runner.os == 'macOS' && matrix.setup == 'graalvm' }}
run: |
./mvnw -ntp -B --file pom.xml -Pnative package -DskipTests
- name: 'Build Native Image (Windows)'
if: ${{ runner.os == 'windows' && matrix.setup == 'graalvm' }}
run: |
./mvnw -ntp -B --file pom.xml -Pnative package -DskipTests
- name: 'Build Debian Package (Linux)'
if: ${{ runner.os == 'Linux' && matrix.setup == 'graalvm' }}
run: |
./mvnw -ntp -B --file pom.xml -Pdeb package -DskipTests
- name: 'Build Distribution'
if: ${{ runner.os == 'Linux' && matrix.setup == 'java' }}
run: |
./mvnw -ntp -B --file pom.xml -Pdist package
- name: 'Upload build artifact'
uses: actions/upload-artifact@v6
with:
name: artifacts-${{ runner.os }}-${{ runner.arch }}-${{ matrix.setup }}
path: |
dist/*.zip
dist/*.tar.gz
dist/*.deb
dist/*.rpm
release-artifacts:
needs: [ set-release-version, build-distribution ]
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: 'Checkout GitHub repository'
uses: actions/checkout@v4
with:
ref: ${{ needs.set-release-version.outputs.HEAD }}
fetch-depth: 0
- name: 'Set up Java'
uses: actions/setup-java@v5
with:
java-version: ${{ env.JAVA_VERSION }}
distribution: ${{ env.JAVA_DISTRO }}
cache: maven
- name: 'Configure Git'
run: |
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
git config --global user.name "github-actions[bot]"
- name: 'Download all artifacts'
uses: actions/download-artifact@v8
with:
path: artifacts
pattern: artifacts-*
merge-multiple: true
- name: 'Check artifacts'
run: |
ls -l ./artifacts
- name: 'Release with JReleaser'
env:
JRELEASER_BRANCH: ${{ needs.set-release-version.outputs.BRANCH_NAME }}
JRELEASER_GITHUB_TOKEN: ${{ secrets.PAT }}
JRELEASER_GPG_PUBLIC_KEY: ${{ secrets.GPG_PUBLIC_KEY }}
JRELEASER_GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
JRELEASER_GPG_SECRET_KEY: ${{ secrets.GPG_PRIVATE_KEY }}
JRELEASER_SDKMAN_CONSUMER_KEY: ${{ secrets.JRELEASER_SDKMAN_CONSUMER_KEY }}
JRELEASER_SDKMAN_CONSUMER_TOKEN: ${{ secrets.JRELEASER_SDKMAN_CONSUMER_TOKEN }}
run: ./mvnw -ntp -B -pl :jikkou-parent --file ./pom.xml -Prelease -DartifactsDir=artifacts jreleaser:full-release
- name: 'JReleaser output'
if: always()
uses: actions/upload-artifact@v6
with:
name: jreleaser-logs
path: |
target/jreleaser/trace.log
target/jreleaser/output.properties
- name: 'Commit Next Version'
env:
NEXT_VERSION: ${{ needs.set-release-version.outputs.NEXT_VERSION }}
run: |
./mvnw -ntp -B versions:set versions:commit -DnewVersion="$NEXT_VERSION"
find . -name 'pom.xml' | xargs git add
git commit -m "ci: bump version for next iteration to $NEXT_VERSION"
git push origin HEAD:${GITHUB_REF#refs/heads/}