Skip to content

Commit

Permalink
update envs
Browse files Browse the repository at this point in the history
  • Loading branch information
jurgen-lentz committed Dec 8, 2024
1 parent 9abcc05 commit 58fd781
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/build-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@ jobs:

- name: Update and install wget
run: |
sudo apt-get update
sudo apt-get install --yes wget
sudo apt-get update && sudo apt-get install --yes wget
- name: Download libscip-linux.zip
run: |
Expand All @@ -26,7 +25,10 @@ jobs:
sudo apt-get install --yes unzip
unzip gcg.zip
export SCIPOPTDIR="$(pwd)/scip_install"
echo $SCIPOPTDIR
export LD_LIBRARY_PATH="$(pwd)/scip_install/lib:$LD_LIBRARY_PATH"
export DYLD_LIBRARY_PATH="$(pwd)/scip_install/lib:$DYLD_LIBRARY_PATH"
export PATH="$(pwd)/scip_install/bin:$PATH"
export PKG_CONFIG_PATH="$(pwd)/scip_install/lib/pkgconfig:$PKG_CONFIG_PATH"
- name: Setup python ${{ matrix.python-version }}
uses: actions/setup-python@v4
Expand Down

0 comments on commit 58fd781

Please sign in to comment.