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:
1010 contents : read 
1111
1212jobs :
13-  build :
13+  compile-nonbootstrapped :
1414 runs-on : ubuntu-latest 
1515 steps :
1616 - name : Git Checkout 
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+ 
                                 You can’t perform that action at this time. 
               
                  
0 commit comments