Skip to content

Commit a19c2b0

Browse files
committed
chore: add CI to verify that the bootstrapped stdlib compiles
1 parent 12a784c commit a19c2b0

File tree

1 file changed

+19
-1
lines changed

1 file changed

+19
-1
lines changed

.github/workflows/stdlib.yaml

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ permissions:
1010
contents: read
1111

1212
jobs:
13-
build:
13+
compile-nonbootstrapped:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Git Checkout
@@ -26,3 +26,21 @@ jobs:
2626
- uses: sbt/setup-sbt@v1
2727
- name: Compile `scala-library-nonbootstrapped`
2828
run: ./project/scripts/sbt scala-library-nonbootstrapped/compile
29+
30+
compile-bootstrapped:
31+
runs-on: ubuntu-latest
32+
steps:
33+
- name: Git Checkout
34+
uses: actions/checkout@v4
35+
36+
- name: Set up JDK 17
37+
uses: actions/setup-java@v4
38+
with:
39+
distribution: 'temurin'
40+
java-version: 17
41+
cache: 'sbt'
42+
43+
- uses: sbt/setup-sbt@v1
44+
- name: Compile `scala-library-bootstrapped`
45+
run: ./project/scripts/sbt scala-library-bootstrapped/compile
46+

0 commit comments

Comments
 (0)