@@ -284,6 +284,42 @@ jobs:
284
284
# ########################################## TEST JOBS ###########################################
285
285
# ################################################################################################
286
286
287
+ test-scala3-compiler-nonbootstrapped :
288
+ runs-on : ubuntu-latest
289
+ needs : [scala3-compiler-nonbootstrapped, tasty-core-nonbootstrapped, scala-library-nonbootstrapped]
290
+ # # The reference compiler generates wrong code for the non-bootstrapped stdlib, hence we cannot run tests on it at the moment
291
+ if : false
292
+ steps :
293
+ - name : Git Checkout
294
+ uses : actions/checkout@v5
295
+
296
+ - name : Set up JDK 17
297
+ uses : actions/setup-java@v5
298
+ with :
299
+ distribution : ' temurin'
300
+ java-version : 17
301
+ cache : ' sbt'
302
+ - uses : sbt/setup-sbt@v1
303
+ - name : Test `scala3-compiler-nonbootstrapped`
304
+ run : ./project/scripts/sbt scala3-compiler-nonbootstrapped-new/test
305
+
306
+ test-scala3-compiler-bootstrapped :
307
+ runs-on : ubuntu-latest
308
+ needs : [scala3-compiler-bootstrapped, tasty-core-bootstrapped, scala-library-bootstrapped, scala3-staging, scala3-tasty-inspector]
309
+ steps :
310
+ - name : Git Checkout
311
+ uses : actions/checkout@v5
312
+
313
+ - name : Set up JDK 17
314
+ uses : actions/setup-java@v5
315
+ with :
316
+ distribution : ' temurin'
317
+ java-version : 17
318
+ cache : ' sbt'
319
+ - uses : sbt/setup-sbt@v1
320
+ - name : Test `scala3-compiler-bootstrapped`
321
+ run : ./project/scripts/sbt scala3-compiler-bootstrapped-new/test
322
+
287
323
test-scala3-sbt-bridge-nonbootstrapped :
288
324
runs-on : ubuntu-latest
289
325
needs : [scala3-sbt-bridge-nonbootstrapped]
0 commit comments