From f9f8b0b54b10d72b946cbea84c63fb430ccccb1b Mon Sep 17 00:00:00 2001 From: Nicolas Stucki Date: Wed, 3 Jan 2024 10:12:45 +0100 Subject: [PATCH] Fix `Test with Scala 2 library with CC TASTy (fast)` We compiled `scala2-library-tasty` by mistake instead of `scala2-library-cc` and `scala2-library-cc-tasty`. The setting `scala2Library` is useless until we are able to execute `scala3-bootstrapped/test`. --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 9075abcdf36e..acfd1b978886 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -148,7 +148,7 @@ jobs: run: ./project/scripts/sbt ";set ThisBuild/Build.scala2Library := Build.Scala2LibraryTasty ;scala3-bootstrapped/testCompilation i5; scala3-bootstrapped/testCompilation tests/run/typelevel-peano.scala; scala3-bootstrapped/testOnly dotty.tools.backend.jvm.DottyBytecodeTests" # only test a subset of test to avoid doubling the CI execution time - name: Test with Scala 2 library with CC TASTy (fast) - run: ./project/scripts/sbt ";set ThisBuild/Build.scala2Library := Build.Scala2LibraryCCTasty ;scala2-library-tasty/compile" # TODO test all the test configurations in non-CC library (currently disabled due to bug while loading the library) + run: ./project/scripts/sbt "scala2-library-cc/compile; scala2-library-cc-tasty/compile" # TODO test all the test configurations in non-CC library (currently disabled due to bug while loading the library) test_scala2_library_tasty: runs-on: [self-hosted, Linux]