14 lines
485 B
YAML
14 lines
485 B
YAML
image: "alpine:latest"
|
|
|
|
stages:
|
|
- tectonic-run
|
|
|
|
# TODO: Cache curl installs and tectonic, for now this works, but is not performant
|
|
tectonic-run:
|
|
stage: tectonic-run
|
|
script:
|
|
- apk update && apk upgrade && apk add curl
|
|
- curl -L0 https://github.com/tectonic-typesetting/tectonic/releases/download/tectonic%400.14.1/tectonic-0.14.1-x86_64-unknown-linux-musl.tar.gz --output tectonic.tar.gz
|
|
- tar -xf tectonic.tar.gz
|
|
- ./tectonic -X compile --keep-logs ./resume.tex
|