|
23 | 23 |
|
24 | 24 | - name: Install dependencies (SCIPOptSuite) |
25 | 25 | run: | |
26 | | - wget --quiet --no-check-certificate https://github.com/scipopt/scip/releases/download/$(echo "v${{env.version}}" | tr -d '.')/scipoptsuite_${{ env.version }}-1+jammy_amd64.deb |
27 | | - sudo apt-get update && sudo apt install -y ./scipoptsuite_${{ env.version }}-1+jammy_amd64.deb |
| 26 | + wget --quiet --no-check-certificate "https://github.com/scipopt/scip/releases/download/v${version}/scipoptsuite_${version}-1+jammy_amd64.deb" |
| 27 | + sudo apt-get update && sudo apt install -y ./scipoptsuite_${version}-1+jammy_amd64.deb |
28 | 28 |
|
29 | 29 | - name: Setup python ${{ matrix.python-version }} |
30 | 30 | uses: actions/setup-python@v4 |
@@ -92,11 +92,11 @@ jobs: |
92 | 92 | - name: Install dependencies (SCIPOptSuite) |
93 | 93 | run: | |
94 | 94 | brew install tbb boost bison |
95 | | - wget --quiet --no-check-certificate https://github.com/scipopt/scip/releases/download/$(echo "v${{env.version}}" | tr -d '.')/scipoptsuite-${{ env.version }}-macos13-arm64.tgz |
96 | | - tar xzf scipoptsuite-${{ env.version }}-macos13-arm64.tgz |
97 | | - chmod +x scipoptsuite-${{ env.version }}-macos13-arm64.sh |
98 | | - ./scipoptsuite-${{ env.version }}-macos13-arm64.sh --skip-license --include-subdir |
99 | | - mv scipoptsuite-${{ env.version }}-macos13-arm64 ${{ github.workspace }}/scipoptsuite |
| 95 | + wget --quiet --no-check-certificate "https://github.com/scipopt/scip/releases/download/v${version}/scipoptsuite-${version}-macos13-arm64.tgz" |
| 96 | + tar xzf "scipoptsuite-${version}-macos13-arm64.tgz" |
| 97 | + chmod +x "scipoptsuite-${version}-macos13-arm64.sh" |
| 98 | + "./scipoptsuite-${version}-macos13-arm64.sh" --skip-license --include-subdir |
| 99 | + mv "scipoptsuite-${version}-macos13-arm64" "${{ github.workspace }}/scipoptsuite" |
100 | 100 |
|
101 | 101 | - name: Setup python ${{ matrix.python-version }} |
102 | 102 | uses: actions/setup-python@v4 |
|
0 commit comments