@@ -395,6 +395,42 @@ jobs:
395395 # ########################################## TEST JOBS ###########################################
396396 # ################################################################################################
397397
398+ test-scala3-compiler-nonbootstrapped :
399+ runs-on : ubuntu-latest
400+ needs : [scala3-compiler-nonbootstrapped, tasty-core-nonbootstrapped, scala-library-nonbootstrapped]
401+ # # The reference compiler generates wrong code for the non-bootstrapped stdlib, hence we cannot run tests on it at the moment
402+ if : false
403+ steps :
404+ - name : Git Checkout
405+ uses : actions/checkout@v5
406+
407+ - name : Set up JDK 17
408+ uses : actions/setup-java@v5
409+ with :
410+ distribution : ' temurin'
411+ java-version : 17
412+ cache : ' sbt'
413+ - uses : sbt/setup-sbt@v1
414+ - name : Test `scala3-compiler-nonbootstrapped`
415+ run : ./project/scripts/sbt scala3-compiler-nonbootstrapped-new/test
416+
417+ test-scala3-compiler-bootstrapped :
418+ runs-on : ubuntu-latest
419+ needs : [scala3-compiler-bootstrapped, tasty-core-bootstrapped, scala-library-bootstrapped, scala3-staging, scala3-tasty-inspector]
420+ steps :
421+ - name : Git Checkout
422+ uses : actions/checkout@v5
423+
424+ - name : Set up JDK 17
425+ uses : actions/setup-java@v5
426+ with :
427+ distribution : ' temurin'
428+ java-version : 17
429+ cache : ' sbt'
430+ - uses : sbt/setup-sbt@v1
431+ - name : Test `scala3-compiler-bootstrapped`
432+ run : ./project/scripts/sbt scala3-compiler-bootstrapped-new/test
433+
398434 test-scala3-sbt-bridge-nonbootstrapped :
399435 runs-on : ubuntu-latest
400436 needs : [scala3-sbt-bridge-nonbootstrapped]
0 commit comments