From 90e370c0ef1e9c77c1a3db618e2c0f22142588bb Mon Sep 17 00:00:00 2001 From: Chris Stewart Date: Thu, 9 May 2024 11:12:07 -0500 Subject: [PATCH] Remove TorTests.yml as it spuriously fails on CI connecting to the tor network, add build commands to Compile.yml (#5578) --- .github/workflows/Compile.yml | 2 +- .github/workflows/TorTests.yml | 35 ---------------------------------- 2 files changed, 1 insertion(+), 36 deletions(-) delete mode 100644 .github/workflows/TorTests.yml diff --git a/.github/workflows/Compile.yml b/.github/workflows/Compile.yml index 3bda165e200..7d6095e70bd 100644 --- a/.github/workflows/Compile.yml +++ b/.github/workflows/Compile.yml @@ -31,4 +31,4 @@ jobs: ~/.bitcoin-s/binaries key: ${{ runner.os }}-compile-cache - name: Compile and Check Formatting - run: sbt -J-Xmx4g +test:compile scalafmtCheckAll cryptoTestJVM/test coreTestJVM/test docs/mdoc + run: sbt -J-Xmx4g +test:compile scalafmtCheckAll cryptoTestJVM/test coreTestJVM/test appServer/universal:packageBin oracleServer/universal:packageBin cli/universal:packageBin docs/mdoc diff --git a/.github/workflows/TorTests.yml b/.github/workflows/TorTests.yml deleted file mode 100644 index 549c3b1cfc2..00000000000 --- a/.github/workflows/TorTests.yml +++ /dev/null @@ -1,35 +0,0 @@ -name: Tor Tests -env: - COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} - -on: - pull_request: - -jobs: - test: - runs-on: ubuntu-latest - timeout-minutes: 60 - if: "! contains(github.event.pull_request.labels.*.name, 'documentation')" - env: - TOR: "1" - steps: - - name: Checkout - uses: actions/checkout@v2 - with: - fetch-depth: 0 - - name: Setup Scala - uses: actions/setup-java@v3 - with: - distribution: 'adopt' - java-version: '21' - cache: 'sbt' - - name: Cache - uses: actions/cache@v3 - with: - path: | - ~/.ivy2/cache - ~/.sbt - ~/.bitcoin-s/binaries - key: ${{ runner.os }}-cache - - name: run tests - run: sbt torTest/test