Skip to content

Move read data after time step computation #106

Move read data after time step computation

Move read data after time step computation #106

Workflow file for this run

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";