@@ -392,13 +392,33 @@ jobs:
392
392
- name : Report MiMa issues in `tasty-core-bootstrapped`
393
393
run : ./project/scripts/sbt tasty-core-bootstrapped-new/mimaReportBinaryIssues
394
394
395
+ mima-scala-library-sjs :
396
+ runs-on : ubuntu-latest
397
+ needs : scala-library-sjs
398
+ steps :
399
+ - name : Git Checkout
400
+ uses : actions/checkout@v5
401
+
402
+ - name : Set up JDK 17
403
+ uses : actions/setup-java@v5
404
+ with :
405
+ distribution : ' temurin'
406
+ java-version : 17
407
+ cache : ' sbt'
408
+
409
+ - uses : sbt/setup-sbt@v1
410
+ - name : Report MiMa issues in `scala-library-sjs`
411
+ run : ./project/scripts/sbt scala-library-sjs/mimaReportBinaryIssues
412
+
395
413
# ################################################################################################
396
414
# ########################################## TEST JOBS ###########################################
397
415
# ################################################################################################
398
416
399
417
test-scala3-compiler-nonbootstrapped :
400
418
runs-on : ubuntu-latest
401
419
needs : [scala3-compiler-nonbootstrapped, tasty-core-nonbootstrapped, scala-library-nonbootstrapped]
420
+ # Non-bootstrapped can definetely not be enabled until we have at least 3.8.0-RC1 as a reference compiler
421
+ if : false
402
422
steps :
403
423
- name : Git Checkout
404
424
uses : actions/checkout@v5
@@ -497,3 +517,20 @@ jobs:
497
517
- uses : sbt/setup-sbt@v1
498
518
- name : Test `tasty-core-bootstrapped`
499
519
run : ./project/scripts/sbt tasty-core-bootstrapped-new/test
520
+
521
+ test-scala-js :
522
+ runs-on : ubuntu-latest
523
+ needs : [scala3-compiler-bootstrapped, tasty-core-bootstrapped, scala3-staging, scala3-tasty-inspector, scala-library-sjs]
524
+ steps :
525
+ - name : Git Checkout
526
+ uses : actions/checkout@v5
527
+
528
+ - name : Set up JDK 17
529
+ uses : actions/setup-java@v5
530
+ with :
531
+ distribution : ' temurin'
532
+ java-version : 17
533
+ cache : ' sbt'
534
+ - uses : sbt/setup-sbt@v1
535
+ - name : Test Scala.js
536
+ run : ./project/scripts/sbt sjsCompilerTests/test
0 commit comments