-
-
Notifications
You must be signed in to change notification settings - Fork 15
60 lines (58 loc) · 2.25 KB
/
run-tutorials.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
name: Run preCICE Tutorials
on:
push:
branches:
- master
- develop
pull_request:
paths:
- '**'
jobs:
run_ht_simple:
name: Run HT, simple
runs-on: ubuntu-latest
container: precice/precice:develop
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Install Dependencies & FEniCS
run: |
apt-get -qq update
apt-get -qq install software-properties-common python3-dev python3-pip git apt-utils
add-apt-repository -y ppa:fenics-packages/fenics
apt-get -qq install --no-install-recommends fenics
rm -rf /var/lib/apt/lists/*
- name: Install adapter
run: pip3 install --user .
- name: Fix broken FEniCS installation (see https://fenicsproject.discourse.group/t/installing-python-package-with-fenics-dependency-breaks-fenics-installation/4476)
run: pip3 uninstall -y fenics-ufl
- name: Get tutorials
run: git clone -b develop https://github.com/precice/tutorials.git
- name: Run tutorial
run: |
cd tutorials/partitioned-heat-conduction
cd dirichlet-fenics && ./run.sh & cd neumann-fenics && ./run.sh
run_ht_complex:
name: Run HT, complex
runs-on: ubuntu-latest
container: precice/precice:develop
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Install Dependencies & FEniCS
run: |
apt-get -qq update
apt-get -qq install software-properties-common python3-dev python3-pip git apt-utils
add-apt-repository -y ppa:fenics-packages/fenics
apt-get -qq install --no-install-recommends fenics
rm -rf /var/lib/apt/lists/*
- name: Install adapter
run: pip3 install --user .
- name: Fix broken FEniCS installation (see https://fenicsproject.discourse.group/t/installing-python-package-with-fenics-dependency-breaks-fenics-installation/4476)
run: pip3 uninstall -y fenics-ufl
- name: Get tutorials
run: git clone -b develop https://github.com/precice/tutorials.git
- name: Run tutorial
run: |
cd tutorials/partitioned-heat-conduction-complex
cd dirichlet-fenics && ./run.sh & cd neumann-fenics && ./run.sh