From 31527a80d8d0c2b706a26b34d93602aeea5f785f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Franziska=20Schl=C3=B6sser?= Date: Wed, 15 Dec 2021 17:16:46 +0100 Subject: [PATCH] update integration test (#556) * update integration test * try homebrew suggestion * fix indentation * try with tbb2021 * try with tbb2021 installation --- .github/workflows/integration-test.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/integration-test.yml b/.github/workflows/integration-test.yml index b3306d0ca..181d0ef7c 100644 --- a/.github/workflows/integration-test.yml +++ b/.github/workflows/integration-test.yml @@ -97,9 +97,9 @@ jobs: with: path: | ${{ runner.workspace }}/scipoptsuite - ~/Library/Caches/Homebrew/tbb@2020--* - /usr/local/opt/tbb@2020* - ~/Library/Caches/Homebrew/downloads/*--tbb@2020-* + ~/Library/Caches/Homebrew/tbb--* + /usr/local/opt/tbb* + ~/Library/Caches/Homebrew/downloads/*--tbb-* ~/Library/Caches/Homebrew/boost--* /usr/local/opt/boost* ~/Library/Caches/Homebrew/downloads/*--boost-* @@ -110,13 +110,13 @@ jobs: - name: Install dependencies (SCIPOptSuite) if: steps.cache-scip.outputs.cache-hit != 'true' run: | - brew install tbb@2020 boost bison + brew install tbb boost bison wget --quiet --no-check-certificate https://scipopt.org/download/release/scipoptsuite-${{ env.version }}.tgz tar xfz scipoptsuite-${{ env.version }}.tgz cd scipoptsuite-${{ env.version }} mkdir build cd build - cmake .. -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=${{ runner.workspace }}/scipoptsuite -DIPOPT=off -DSYM=none -DTPI=tny -DREADLINE=off -DTBB_DIR=/usr/local/opt/tbb@2020/lib + cmake .. -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=${{ runner.workspace }}/scipoptsuite -DIPOPT=off -DSYM=none -DTPI=tny -DREADLINE=off make install -j - name: Setup python ${{ matrix.python-version }}