-
Notifications
You must be signed in to change notification settings - Fork 19
31 lines (28 loc) · 945 Bytes
/
test.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
name: "Build"
on:
push:
branches:
- 'master'
jobs:
build:
runs-on: ubuntu-22.04
name: "Build PDFs for all Books"
steps:
- name: "Checkout repository"
uses: actions/checkout@v1
with:
submodules: recursive
- name: "Install abcm2ps"
run: |
sudo apt-get update
sudo apt-get install --no-install-recommends -y make gcc libc6-dev
wget https://github.com/leesavide/abcm2ps/archive/v8.14.15.tar.gz -O abcm2ps-8.14.15.tar.gz
tar -xf abcm2ps-8.14.15.tar.gz
cd abcm2ps-8.14.15/
./configure
sudo make install
- name: "Install LaTeX and dependencies"
run: |
sudo apt-get update
sudo apt-get install --no-install-recommends -y texlive-latex-base texlive-latex-extra texlive-fonts-recommended texlive-extra-utils texlive-lang-german xzdec ghostscript make lua5.3
- run: make