File tree Expand file tree Collapse file tree 1 file changed +19
-1
lines changed Expand file tree Collapse file tree 1 file changed +19
-1
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ permissions:
10
10
contents : read
11
11
12
12
jobs :
13
- build :
13
+ compile-nonbootstrapped :
14
14
runs-on : ubuntu-latest
15
15
steps :
16
16
- name : Git Checkout
26
26
- uses : sbt/setup-sbt@v1
27
27
- name : Compile `scala-library-nonbootstrapped`
28
28
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
+
You can’t perform that action at this time.
0 commit comments