forked from scalacenter/bloop
-
Notifications
You must be signed in to change notification settings - Fork 0
283 lines (278 loc) · 9.57 KB
/
ci.yml
File metadata and controls
283 lines (278 loc) · 9.57 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
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
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
name: Continuous Integration
on:
push:
tags:
- v1.*
- v2.*
branches:
- master
pull_request:
jobs:
scalafmt:
name: Formatting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.3.4
- uses: olafurpg/setup-scala@v12
with:
java-version: graalvm-ce-java11@20.1.0
- name: Check formatting
run: ./bin/scalafmt --test
integrations:
name: Build integrations tests
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macOS-latest]
jdk: [graalvm-ce-java11@20.1.0]
steps:
- uses: actions/checkout@v2.3.4
with:
submodules: true
- uses: olafurpg/setup-scala@v12
with:
java-version: ${{ matrix.jdk }}
- name: Tests
run: |
./bin/sbt-ci.sh \
"mavenBloop/publishM2" \
"mavenBloop/test" \
"gradleBloop211/compile" \
"gradleBloop212/compile" \
"gradleBloop212/test" \
"sbtBloop10Shaded/publishLocal" \
"sbtBloop10/scripted"
shell: bash
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
jdk: [graalvm-ce-java11@20.1.0, adopt@1.11]
name: Test ${{ matrix.os }} -- ${{ matrix.jdk }}
env:
HYDRA_LICENSE: ${{ secrets.HYDRA_LICENSE }}
steps:
- uses: actions/checkout@v2.3.4
with:
submodules: true
fetch-depth: 0
- uses: olafurpg/setup-scala@v12
with:
java-version: ${{ matrix.jdk }}
- uses: actions/setup-node@v2.3.0
with:
node-version: "10.x"
- name: Set up environment
run: |
curl -Lo coursier https://git.io/coursier-cli && chmod +x coursier && ./coursier --help
yarn --help
java -version
[[ $HYDRA_LICENSE == floating-key=* ]] && mkdir -p $HOME/.triplequote && echo "$HYDRA_LICENSE" > "$HOME/.triplequote/hydra.license" || echo "Hydra license file was not created"
shell: bash
- name: Compile and test main projects
run: |
./bin/sbt-ci.sh \
"frontend/test:compile" \
"sbtBloop013/compile" \
"sbtBloop10/compile" \
"mavenBloop/compile" \
"backend/test" \
"docs/compile" \
"jsBridge06/publishLocal" \
"jsBridge1/publishLocal" \
"frontend/testOnly bloop.ScalaVersionsSpec" \
"frontend/testOnly -bloop.ScalaVersionsSpec" \
"jsBridge06/test" \
"jsBridge1/test" \
"frontend/runMain bloop.util.CommandsDocGenerator --test" \
"frontend/runMain bloop.util.CommandsDocGenerator --out ../docs/cli/reference.md"
shell: bash
- name: Check docs are up-to-date
run: |
./bin/check-good-practices.sh
shell: bash
- name: Run launcher tests
if: matrix.jdk == 'graalvm-ce-java11@20.1.0'
run: |
echo $JAVA_HOME
which gu && gu install native-image
./bin/sbt-ci.sh "install" "launcher/test"
shell: bash
- name: Benchmark
if: matrix.jdk == 'graalvm-ce-java11@20.1.0' && matrix.os != 'windows-latest'
run: |
./bin/sbt-ci.sh \
"benchmarks/jmh:run .*HotBloopBenchmark.* -wi 0 -i 1 -f1 -t1 -p project=with-tests -p projectName=with-tests"
shell: bash
publish-binaries:
name: Publish binaries for ${{ matrix.os }}
runs-on: ${{ matrix.os }}
if: github.event_name == 'push'
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macOS-latest]
jdk: [graalvm-ce-java11@20.1.0]
include:
- os: ubuntu-latest
artifact: bloop-linux
- os: macos-latest
artifact: bloop-macos
env:
CI: true
SKIP_TEST_RESOURCES_GENERATION: true
GITHUB_DEPLOY_KEY: ${{ secrets.GITHUB_DEPLOY_KEY }}
BLOOPOID_GITHUB_TOKEN: ${{ secrets.BLOOPOID_GITHUB_TOKEN }}
ARTIFACT_NAME: ${{ matrix.artifact }}
steps:
- uses: actions/checkout@v2.3.4
with:
submodules: true
fetch-depth: 0
- uses: olafurpg/setup-scala@v12
with:
java-version: ${{ matrix.jdk }}
- name: Publish GraalVM Native artifacts
run: |
echo $JAVA_HOME
which gu
gu install native-image
./bin/sbt-ci.sh "bloopgun/graalvm-native-image:packageBin"
mkdir bloop-artifacts
cp bloopgun/target/graalvm-native-image/bloopgun-core bloop-artifacts/$ARTIFACT_NAME
shell: bash
- uses: actions/upload-artifact@master
with:
name: bloop-artifacts
path: bloop-artifacts/${{ matrix.artifact }}
publish-binaries-windows:
name: Publish binaries for ${{ matrix.os }}
runs-on: ${{ matrix.os }}
if: github.event_name == 'push'
strategy:
fail-fast: false
matrix:
os: [windows-latest]
jdk: [graalvm-ce-java11@20.1.0]
include:
- os: windows-latest
artifact: bloop-windows
env:
CI: true
SKIP_TEST_RESOURCES_GENERATION: true
GITHUB_DEPLOY_KEY: ${{ secrets.GITHUB_DEPLOY_KEY }}
BLOOPOID_GITHUB_TOKEN: ${{ secrets.BLOOPOID_GITHUB_TOKEN }}
ARTIFACT_NAME: ${{ matrix.artifact }}
steps:
- name: Configure Pagefile
uses: al-cheb/configure-pagefile-action@v1.2
- name: Refresh Pagefile
run: |
(Get-CimInstance Win32_PageFileUsage).AllocatedBaseSize
- uses: actions/checkout@v2.3.4
with:
submodules: true
fetch-depth: 0
- uses: olafurpg/setup-scala@v12
with:
java-version: ${{ matrix.jdk }}
- name: Install GraalVM Native Image
run: |
echo $JAVA_HOME
"$JAVA_HOME\bin\gu.cmd" install native-image
shell: bash
- name: Pre-load sbt with bash
# FIXME: This step shouldn't be necessary, but sbt fails to find
# org.scala-lang.modules#scala-xml_2.12;1.2.0!scala-xml_2.12.jar when launched with
# cmd.
# Keep the sbt version in sync with `sbt-ci-release.bat`.
run: |
sbt -sbt-version 1.3.3 version
shell: bash
- name: Publish GraalVM Native artifacts
run: >-
"C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvars64.bat" &&
"%CD%"\bin\sbt-ci-release.bat
shell: cmd
- name: Prepare generated Windows GraalVM binary
run: |
echo $ARTIFACT_NAME
ls bloopgun/target/graalvm-native-image/bloopgun-core.exe
mkdir bloop-artifacts
cp bloopgun/target/graalvm-native-image/bloopgun-core.exe bloop-artifacts/$ARTIFACT_NAME
shell: bash
- uses: actions/upload-artifact@master
with:
name: bloop-artifacts
path: bloop-artifacts/${{ matrix.artifact }}
release:
name: Release version on ${{ matrix.os }}
needs:
- publish-binaries
- publish-binaries-windows
runs-on: ${{ matrix.os }}
if: github.event_name == 'push'
strategy:
fail-fast: true
matrix:
os: [ubuntu-latest]
jdk: [adopt@1.8]
env:
CI: true
SKIP_TEST_RESOURCES_GENERATION: true
SONATYPE_USER: ${{ secrets.SONATYPE_USER }}
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}
PGP_PASSWORD: ${{ secrets.PGP_PASSWORD }}
PGP_PASSPHRASE: ${{ secrets.PGP_PASSWORD }}
PGP_PUBLIC_KEY: ${{ secrets.PGP_PUBLIC_KEY }}
PGP_PRIVATE_KEY: ${{ secrets.PGP_PRIVATE_KEY }}
GITHUB_DEPLOY_KEY: ${{ secrets.GITHUB_DEPLOY_KEY }}
BLOOPOID_GITHUB_TOKEN: ${{ secrets.BLOOPOID_GITHUB_TOKEN }}
BLOOPOID_SSH_PUBLIC_KEY: ${{ secrets.BLOOPOID_SSH_PUBLIC_KEY }}
BLOOPOID_SSH_PRIVATE_KEY: ${{ secrets.BLOOPOID_SSH_PRIVATE_KEY }}
steps:
- uses: actions/checkout@v2.3.4
with:
submodules: true
fetch-depth: 0
- uses: olafurpg/setup-scala@v12
with:
java-version: ${{ matrix.jdk }}
- uses: actions/setup-node@v2.3.0
with:
node-version: "10.x"
- name: Download built GraalVM binaries
uses: actions/download-artifact@v3.0.1
with:
name: bloop-artifacts
path: bloop-artifacts
- name: Set up environment
run: |
curl -Lo coursier https://git.io/coursier-cli && chmod +x coursier && ./coursier --help
yarn --help
shell: bash
- name: Publish docs and binaries to Maven Central
run: |
yarn install
touch ~/.profile
mkdir "$HOME/.ssh"
mkdir "$HOME/.sbt"
mkdir "$HOME/.sbt/gpg"
git config --global user.name "Bloopoid"
git config --global user.email "bloop@vican.me"
git config --global push.default simple
echo "$PGP_PUBLIC_KEY" > "$HOME/.sbt/gpg/pubring.asc"
echo "$PGP_PRIVATE_KEY" > "$HOME/.sbt/gpg/secring.asc"
ls -l bloop-artifacts
mkdir -p frontend/target
mv bloop-artifacts frontend/target/graalvm-binaries
./bin/sbt-ci-publish.sh "releaseBloop" "docs/docusaurusPublishGhpages"
shell: bash
- name: Cut GitHub release and update installers on ${{ matrix.os }}
run: |
. bin/ci-setup-bloopoid-keys.sh
export GITHUB_TOKEN="$BLOOPOID_GITHUB_TOKEN"
./bin/sbt-ci-release.sh "frontend/updateHomebrewFormula" "frontend/updateScoopFormula" "frontend/githubRelease"