From 93f9adbfcc1d41ae1824c9a4b35a31a0da917ea9 Mon Sep 17 00:00:00 2001 From: Viktor Kuncak Date: Mon, 16 Sep 2024 16:45:51 +0200 Subject: [PATCH] Disable plugin test for now --- .github/workflows/stainless-CI.yml | 4 ++-- build.sbt | 1 - stainless-ci.sh | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/stainless-CI.yml b/.github/workflows/stainless-CI.yml index 3eb0b06ef..23ba71442 100644 --- a/.github/workflows/stainless-CI.yml +++ b/.github/workflows/stainless-CI.yml @@ -37,8 +37,8 @@ jobs: run: ./stainless-ci.sh --build-only - name: Run Tests and Integration Tests run: ./stainless-ci.sh --skip-build --skip-bolts --skip-sbt-plugin - - name: Sbt Plugin Tests - run: ./stainless-ci.sh --skip-build --skip-tests --skip-bolts + - name: Sbt Plugin Tests SKIPPED + run: echo SKIPPED fail_if_pull_request_is_draft: if: github.event.pull_request.draft == true runs-on: [self-hosted, linux] diff --git a/build.sbt b/build.sbt index 82d18e483..2a9248e5c 100644 --- a/build.sbt +++ b/build.sbt @@ -41,7 +41,6 @@ lazy val nTestSuiteParallelism = { // The Scala version with which Stainless is compiled. // Note: in case of version bump, do not forget to update the `test` files in `sbt-plugin` (for `sbt scripted`)! val stainlessScalaVersion = "3.5.0" -// Stainless supports Scala 3.3 programs. val frontendDottyVersion = stainlessScalaVersion // The Stainless libraries use Scala 2.13 and Scala 3.3, and is compatible only with Scala 3.3. val stainlessLibScalaVersion = stainlessScalaVersion diff --git a/stainless-ci.sh b/stainless-ci.sh index 710e5d959..1cb085b74 100755 --- a/stainless-ci.sh +++ b/stainless-ci.sh @@ -31,7 +31,7 @@ SKIP_TESTS=false ROOT_DIR=$PWD SBT_TEMP=$ROOT_DIR/sbt-temp mkdir -p $SBT_TEMP -BLOODY_SOCKET_DIR=/var/tmp/$RANDOM +BLOODY_SOCKET_DIR=/var/tmp/stnlsci-$RANDOM export JAVA_OPTS="-Djava.io.tmpdir=$BLOODY_SOCKET_DIR" SBT_DIR=$ROOT_DIR/temp # make better later SBT=${SBT_DIR}/sbt/bin/sbt