Skip to content

Solid mechanics CI #193

Solid mechanics CI

Solid mechanics CI #193

name: Solid mechanics CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
schedule:
- cron: '0 8 * * 2' # run once in a week (here Tue at 8am)
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- name: run test
run: |
command="sudo apt-get -y update && \
sudo apt-get -y upgrade && \
sudo apt-get -y install libboost-all-dev && \
git clone https://github.com/${{ github.repository }} && \
cd matrix-free-dealii-precice && \
git fetch origin ${{ github.ref }} && \
git checkout FETCH_HEAD && \
cd tests/solid && \
./run_tests.sh";
echo $command
docker pull dealii/dealii:master-jammy
docker pull precice/precice:develop
docker build -t dealii-precice:develop -f ./utilities/Dockerfile .
docker run -t dealii-precice:develop /bin/sh -c "$command";