From fd2784d16116fa5d47bf8e35f7e5a0acc5d916b3 Mon Sep 17 00:00:00 2001 From: Patrik Nordwall Date: Tue, 31 Aug 2021 10:17:10 +0200 Subject: [PATCH] Only multi-jvm in nightly-builds.yml * multi-node is run by multi-node.yml --- .github/workflows/nightly-builds.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/nightly-builds.yml b/.github/workflows/nightly-builds.yml index 31a340cc62..f3281c7867 100644 --- a/.github/workflows/nightly-builds.yml +++ b/.github/workflows/nightly-builds.yml @@ -120,18 +120,14 @@ jobs: - name: Cache Coursier cache uses: coursier/cache-action@v6.2 - # Only run multi-jvm tests in Scala 2.13. No need to run it to - # multiple Scala versions AND multiple JDK versions. This will - # run multi-jvm tests to run for both JDK 8 and 11 though. - name: Compile and Test run: |- - ## TODO: restore the multi-node tests sbt -jvm-opts .jvmopts-ci \ -Dakka.build.scalaVersion=${{ matrix.scalaVersion }} \ -Dakka.cluster.assert=on \ -Dakka.log.timestamps=true \ -Dakka.test.timefactor=2 \ - -Dakka.test.multi-in-test=${{ matrix.scalaVersion == '2.13' }} \ + -Dakka.test.multi-in-test=false \ -Dakka.test.tags.exclude=gh-exclude \ clean update Test/compile test checkTestsHaveRun