-
Notifications
You must be signed in to change notification settings - Fork 56
254 lines (209 loc) · 6.79 KB
/
main.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
name: Main
on:
push:
branches: [master]
pull_request:
env:
COURSIER_CACHE: ${{ github.workspace }}/.cache/coursier
# Retention period of the generated artifacts (main and JMH Renaissance JARs)
# (Using the pseudo-ternary operator here, the retention can be 1 to 90 days)
ARTIFACT_RETENTION_DAYS: ${{ ((github.event_name == 'push') && (github.ref == 'refs/heads/master')) && 30 || 4 }}
jobs:
style:
runs-on: ubuntu-latest
container: "ghcr.io/renaissance-benchmarks/renaissance-buildenv:v14-openjdk23"
# We rarely build for more than 3 minutes
timeout-minutes: 10
steps:
- name: Git checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Fix Git safe directory
shell: bash
run: git config --global --add safe.directory $GITHUB_WORKSPACE
- name: Coursier downloads cache
uses: actions/cache@v4
with:
key: coursier_cache-${{ runner.os }}-${{ hashFiles('build.sbt') }}
path: ${{ env.COURSIER_CACHE }}
- name: Check file encoding
shell: bash
run: tools/ci/check-encoding.sh
- name: Check source code formatting
shell: bash
run: tools/ci/check-formatting.sh
build:
runs-on: ubuntu-latest
container: "ghcr.io/renaissance-benchmarks/renaissance-buildenv:v14-openjdk11-with-ant-gcc"
# We rarely build for more than 3 minutes
timeout-minutes: 10
steps:
- name: Git checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Fix Git safe directory
shell: bash
run: git config --global --add safe.directory $GITHUB_WORKSPACE
- name: Environment configuration
shell: bash
run: tools/ci/pre-show-env.sh
- name: Coursier downloads cache
uses: actions/cache@v4
with:
key: coursier_cache-${{ runner.os }}-${{ hashFiles('build.sbt') }}
path: ${{ env.COURSIER_CACHE }}
- name: Build both base & JMH bundles
shell: bash
run: tools/ci/build-both.sh
- name: Check JMH bundle
shell: bash
run: tools/ci/check-jmh.sh
- name: Upload the main JAR
uses: actions/upload-artifact@v4
with:
name: main-jar
path: target/renaissance-*.jar
retention-days: ${{ env.ARTIFACT_RETENTION_DAYS }}
- name: Upload JMH JAR
uses: actions/upload-artifact@v4
with:
name: jmh-jar
path: renaissance-jmh/target/renaissance-*.jar
retention-days: ${{ env.ARTIFACT_RETENTION_DAYS }}
readme:
needs: build
runs-on: ubuntu-latest
container: "ghcr.io/renaissance-benchmarks/renaissance-buildenv:v14-openjdk23"
# We rarely build for more than 3 minutes
timeout-minutes: 10
steps:
- name: Git checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Fix Git safe directory
shell: bash
run: git config --global --add safe.directory $GITHUB_WORKSPACE
- name: Fetch pre-built main JAR
uses: actions/download-artifact@v4
with:
name: main-jar
path: target
- name: Check generated files are up-to-date
shell: bash
run: tools/ci/check-markdown.sh
run:
needs: build
strategy:
fail-fast: false
matrix:
include:
- os: linux
image: openjdk11
- os: linux
image: openjdk17
- os: linux
image: openjdk21
- os: linux
image: openjdk23
- os: linux
image: openj9-openjdk11
- os: linux
image: openj9-openjdk17
- os: linux
image: openj9-openjdk21
- os: windows
java: 11
- os: windows
java: 17
- os: windows
java: 21
- os: windows
java: 23
- os: macos
java: 11
- os: macos
java: 17
- os: macos
java: 21
- os: macos
java: 23
# The following two lines are a bit of a hack:
# - We use only short OS name in the matrix to have short build names.
# - We need to set container to null on Windows and Mac as containers are
# supported on Linux only
runs-on: ${{ (matrix.os == 'linux') && 'ubuntu' || matrix.os }}-latest
container: ${{ (matrix.os == 'linux') && format('ghcr.io/renaissance-benchmarks/renaissance-buildenv:v14-{0}', matrix.image) || null }}
# We rarely run over 17 minutes but a runaway JMH can loop forever.
timeout-minutes: 30
steps:
- name: Git checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Fix Git safe directory
shell: bash
run: git config --global --add safe.directory $GITHUB_WORKSPACE
- name: Setup correct Java version
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: ${{ matrix.java }}
if: ${{ matrix.os != 'linux' }}
- name: Environment configuration
shell: bash
run: tools/ci/pre-show-env.sh
- name: Fetch pre-built main JAR
uses: actions/download-artifact@v4
with:
name: main-jar
path: target
- name: Fetch pre-built JMH JAR
uses: actions/download-artifact@v4
with:
name: jmh-jar
path: renaissance-jmh/target
- name: Run the suite
shell: bash
run: tools/ci/bench-base.sh
- name: Run the suite in standalone mode
shell: bash
run: tools/ci/bench-standalone.sh
- name: Run the suite with JMH
shell: bash
run: tools/ci/bench-jmh.sh
plugins:
runs-on: ubuntu-latest
needs: build
container: "ghcr.io/renaissance-benchmarks/renaissance-buildenv:v14-openjdk11-with-ant-gcc"
# We rarely run over 10 minutes anyway.
timeout-minutes: 30
steps:
- name: Git checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Fix Git safe directory
shell: bash
run: git config --global --add safe.directory $GITHUB_WORKSPACE
- name: Environment configuration
shell: bash
run: tools/ci/pre-show-env.sh
- name: Coursier downloads cache
uses: actions/cache@v4
with:
key: coursier_cache-${{ runner.os }}-${{ hashFiles('build.sbt') }}
path: ${{ env.COURSIER_CACHE }}
- name: Fetch pre-built main JAR
uses: actions/download-artifact@v4
with:
name: main-jar
path: target
- name: Build plugins
shell: bash
run: tools/ci/build-plugins.sh
- name: Run the suite with all plugins
shell: bash
run: tools/ci/bench-plugins.sh