-
-
Notifications
You must be signed in to change notification settings - Fork 44
51 lines (51 loc) · 1.49 KB
/
cache.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
name: Build Cache
on:
push:
branches:
- main
jobs:
cache:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install Python Dependencies
run: |
pip install -r requirements.txt
- name: Install LaTeX dependencies
run: |
sudo apt-get -qq update
sudo apt-get install -y \
texlive-latex-recommended \
texlive-latex-extra \
texlive-fonts-recommended \
texlive-fonts-extra \
texlive-xetex \
latexmk \
xindy \
texlive-luatex \
dvipng \
ghostscript \
cm-super
- name: Set up Julia
uses: julia-actions/setup-julia@v1
with:
version: 1.9
- name: Install IJulia and Setup Project
shell: bash
run: |
julia -e 'using Pkg; Pkg.add("IJulia");'
julia --project=lectures --threads auto -e 'using Pkg; Pkg.instantiate();'
- name: Build HTML
shell: bash -l {0}
run: |
jb build lectures --path-output ./
- name: Upload the "_build" folder (cache)
uses: actions/upload-artifact@v2
with:
name: build-cache
path: _build