-
Notifications
You must be signed in to change notification settings - Fork 1
35 lines (35 loc) · 1.27 KB
/
compile.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
name: 'Compile and upload document'
on: [push, pull_request]
jobs:
build_latex:
runs-on: ubuntu-latest
container:
image: docker.io/firedrakeproject/firedrake-vanilla:2023-11
options: --user root
steps:
- name: Activate Firedrake virtual environment
run: |
. /home/firedrake/firedrake/bin/activate
echo PATH=$PATH >> $GITHUB_ENV
- name: Install dependencies
run: |
apt update
apt install -yq patchelf texlive texlive-fonts-extra
pip install netCDF4
pip install git+https://github.com/firedrakeproject/irksome.git
pip install git+https://github.com/icepack/Trilinos.git
pip install git+https://github.com/icepack/pyrol.git
pip install git+https://github.com/icepack/icepack.git
pip install git+https://github.com/icepack/icepack2.git
- name: Check out git repository
uses: actions/checkout@v3
- name: Compile TeX document
env:
EARTHDATA_USERNAME: ${{ secrets.EARTHDATA_USERNAME }}
EARTHDATA_PASSWORD: ${{ secrets.EARTHDATA_PASSWORD }}
run: make
- name: Upload PDF file
uses: actions/upload-artifact@v3
with:
name: dual-problems
path: dual-problems.pdf