+ Schminke #33
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |