From 7cdc4cc512784b0544b66e5948f92f3879ed6bff Mon Sep 17 00:00:00 2001 From: ccellado Date: Sun, 17 Mar 2024 04:46:20 +0400 Subject: [PATCH] Remove old docker library Fix integration specs Deprecate OpenApiSpec --- .github/workflows/ci.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e69032fa94..7fe11593ae 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -136,6 +136,8 @@ jobs: test_it: name: Run it node tests + env: + TMPDIR=${{ runner.temp }} strategy: matrix: os: [ ubuntu-latest ] @@ -146,6 +148,7 @@ jobs: - name: Checkout current branch (full) uses: actions/checkout@v2 with: + path: it fetch-depth: 0 - name: Setup Java and Scala @@ -165,9 +168,7 @@ jobs: ~/Library/Caches/Coursier/v1 key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }} - - name: Chown user - run: | - sudo chown -R $USER:$USER ${{ runner.temp }} - - name: Runs it node tests - run: TMPDIR=${{ runner.temp }} sbt -Denv=test clean ++${{ matrix.scala }} it:test \ No newline at end of file + with: + path: it + run: sbt -Denv=test clean ++${{ matrix.scala }} it:test \ No newline at end of file