Skip to content

Commit 6af4d91

Browse files
Move bloop-memory-footprint job down in workflow job list
1 parent a4b6abe commit 6af4d91

File tree

1 file changed

+27
-27
lines changed

1 file changed

+27
-27
lines changed

.github/workflows/ci.yml

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -13,33 +13,6 @@ concurrency:
1313
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
1414

1515
jobs:
16-
bloop-memory-footprint:
17-
timeout-minutes: 120
18-
runs-on: ${{ matrix.OS }}
19-
strategy:
20-
fail-fast: false
21-
matrix:
22-
OS: ["ubuntu-latest"]
23-
steps:
24-
- uses: actions/checkout@v2
25-
with:
26-
fetch-depth: 0
27-
submodules: true
28-
- uses: coursier/[email protected]
29-
- uses: coursier/[email protected]
30-
with:
31-
jvm: "temurin:17"
32-
- name: Java Version
33-
run: java -version
34-
- name: Java Home
35-
run: echo "$JAVA_HOME"
36-
- name: Build Scala CLI
37-
run: ./mill copyJvmLauncher build
38-
- name: Build Benchmark
39-
run: java -jar ./build/scala-cli package --standalone gcbenchmark/gcbenchmark.scala -o gc
40-
- name: Run Benchmark
41-
run: ./gc $(realpath ./build/scala-cli)
42-
4316
jvm-tests:
4417
timeout-minutes: 120
4518
runs-on: ${{ matrix.OS }}
@@ -269,6 +242,33 @@ jobs:
269242
exit 1
270243
)
271244
245+
bloop-memory-footprint:
246+
timeout-minutes: 120
247+
runs-on: ${{ matrix.OS }}
248+
strategy:
249+
fail-fast: false
250+
matrix:
251+
OS: ["ubuntu-latest"]
252+
steps:
253+
- uses: actions/checkout@v2
254+
with:
255+
fetch-depth: 0
256+
submodules: true
257+
- uses: coursier/[email protected]
258+
- uses: coursier/[email protected]
259+
with:
260+
jvm: "temurin:17"
261+
- name: Java Version
262+
run: java -version
263+
- name: Java Home
264+
run: echo "$JAVA_HOME"
265+
- name: Build Scala CLI
266+
run: ./mill copyJvmLauncher build
267+
- name: Build Benchmark
268+
run: java -jar ./build/scala-cli package --standalone gcbenchmark/gcbenchmark.scala -o gc
269+
- name: Run Benchmark
270+
run: ./gc $(realpath ./build/scala-cli)
271+
272272
vc-redist:
273273
timeout-minutes: 15
274274
runs-on: windows-latest

0 commit comments

Comments
 (0)