Skip to content

Commit

Permalink
Update CI package versions for new release
Browse files Browse the repository at this point in the history
  • Loading branch information
davidscn committed Feb 2, 2024
1 parent 703c435 commit 4c6d092
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/building.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ jobs:
- name: setup
run: |
command="sudo apt-get -y update && \
wget https://github.com/precice/precice/releases/download/v2.1.1/libprecice2_2.1.1_focal.deb && \
sudo apt-get -y install ./libprecice2_2.1.1_focal.deb && \
wget https://github.com/precice/precice/releases/download/v3.0.0/libprecice3_3.0.0_jammy.deb && \
sudo apt-get -y install ./libprecice3_3.0.0_jammy.deb && \
cd /src && \
cmake . && \
make";
echo $command
docker pull dealii/dealii:v9.2.0-focal
docker pull dealii/dealii:v9.5.0-jammy
# need to set uid to allow container user to write to the mount
docker run -t --user 0 -v $PWD:/src dealii/dealii:v9.2.0-focal /bin/sh -c "$command";
docker run -t --user 0 -v $PWD:/src dealii/dealii:v9.5.0-jammy /bin/sh -c "$command";

0 comments on commit 4c6d092

Please sign in to comment.