Bump DoozyX/clang-format-lint-action from 0.16 to 0.17 #64
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: deal.II v9.4 | |
on: | |
push: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: setup | |
run: | | |
command="sudo apt-get -y update && \ | |
sudo apt-get -y upgrade && \ | |
sudo apt-get -y install libboost-all-dev && \ | |
git clone https://git@github.com/${{ github.repository }} && \ | |
cd matrix-free-dealii-precice && \ | |
git fetch origin ${{ github.ref }} && \ | |
git checkout FETCH_HEAD && \ | |
mkdir build && cd build && \ | |
cmake .. && make all"; | |
echo $command | |
docker pull dealii/dealii:v9.4.0-jammy | |
docker pull precice/precice:develop | |
docker build -t dealii-precice:develop -f ./utilities/Dockerfile.dealiiv94 . | |
docker run -t dealii-precice:develop /bin/sh -c "$command"; |