Move read data after time step computation #106
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Building | |
on: | |
push: | |
branches: [ master, develop ] | |
pull_request: | |
branches: [ master, develop ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- 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 && \ | |
cd /src && \ | |
cmake . && \ | |
make"; | |
echo $command | |
docker pull dealii/dealii:v9.2.0-focal | |
# 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"; |