Skip to content

Commit e09fbc9

Browse files
committed
one more attempt
1 parent 4024b01 commit e09fbc9

File tree

4 files changed

+13
-11
lines changed

4 files changed

+13
-11
lines changed

.github/workflows/coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
- name: Install dependencies (SCIPOptSuite)
2727
run: |
28-
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
28+
wget --quiet --no-check-certificate "https://github.com/scipopt/scip/releases/download/v${{ env.version }}/scipoptsuite_${{ env.version }}-1+jammy_amd64.deb"
2929
sudo apt-get update && sudo apt install -y ./scipoptsuite_${{ env.version }}-1+jammy_amd64.deb
3030
3131
- name: Setup python ${{ matrix.python-version }}

.github/workflows/integration-test.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ jobs:
2323

2424
- name: Install dependencies (SCIPOptSuite)
2525
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
2828
2929
- name: Setup python ${{ matrix.python-version }}
3030
uses: actions/setup-python@v4
@@ -92,11 +92,11 @@ jobs:
9292
- name: Install dependencies (SCIPOptSuite)
9393
run: |
9494
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"
100100
101101
- name: Setup python ${{ matrix.python-version }}
102102
uses: actions/setup-python@v4

.github/workflows/test-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ jobs:
1717

1818
- name: Install dependencies (SCIPOptSuite)
1919
run: |
20-
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
21-
sudo apt-get update && sudo apt install -y ./scipoptsuite_${{ env.version }}-1+jammy_amd64.deb
20+
wget --quiet --no-check-certificate "https://github.com/scipopt/scip/releases/download/v${version}/scipoptsuite_${version}-1+jammy_amd64.deb"
21+
sudo apt-get update && sudo apt install -y ./scipoptsuite_${version}-1+jammy_amd64.deb
2222
2323
- name: Setup python 3
2424
uses: actions/setup-python@v4

.github/workflows/update-packages-and-documentation.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,9 @@ jobs:
7171

7272
- name: Download dependencies (SCIPOptSuite)
7373
shell: powershell
74-
run: wget https://github.com/scipopt/scip/releases/download/$(echo "v${{env.version}}" | tr -d '.')/scipoptsuite-${{ env.version }}-win-x64.exe -outfile scipopt-installer.exe
74+
run: |
75+
$url = "https://github.com/scipopt/scip/releases/download/v${{ env.version }}/scipoptsuite-${{ env.version }}-win-x64.exe"
76+
Invoke-WebRequest -Uri $url -OutFile scipopt-installer.exe
7577
7678
- name: Install dependencies (SCIPOptSuite)
7779
shell: cmd

0 commit comments

Comments
 (0)