Compare commits
3 Commits
409971cc92
...
4f97b110f3
Author | SHA1 | Date | |
---|---|---|---|
|
4f97b110f3 | ||
|
07d8206d2c | ||
|
d38957d40d |
34
.github/workflows/main.yml
vendored
Normal file
34
.github/workflows/main.yml
vendored
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
name: CI
|
||||||
|
|
||||||
|
# Controls when the action will run.
|
||||||
|
on:
|
||||||
|
# Triggers the workflow on push or pull request events but only for the master branch
|
||||||
|
push:
|
||||||
|
branches: [ master ]
|
||||||
|
pull_request:
|
||||||
|
branches: [ master ]
|
||||||
|
|
||||||
|
# Allows you to run this workflow manually from the Actions tab
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
|
||||||
|
jobs:
|
||||||
|
# This workflow contains a single job called "build"
|
||||||
|
build:
|
||||||
|
# The type of runner that the job will run on
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
container: { image: 'aergus/latex' }
|
||||||
|
|
||||||
|
# Steps represent a sequence of tasks that will be executed as part of the job
|
||||||
|
steps:
|
||||||
|
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: Build the thesis
|
||||||
|
run: latexmk thesis && latexmk abstract-cz && latexmk abstract-en
|
||||||
|
- name: Upload artifacts
|
||||||
|
uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
name: Thesis
|
||||||
|
path: |
|
||||||
|
*.pdf
|
||||||
|
|
15
.gitlab-ci.yml
Normal file
15
.gitlab-ci.yml
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
#
|
||||||
|
# This GitLab CI configuration builds the thesis on each push
|
||||||
|
# The thesis is stored as an repository artifact
|
||||||
|
#
|
||||||
|
# It works with the gitlab.mff.cuni.cz instance.
|
||||||
|
#
|
||||||
|
image: aergus/latex
|
||||||
|
|
||||||
|
build:
|
||||||
|
script: latexmk thesis && latexmk abstract-cz && latexmk abstract-en;
|
||||||
|
artifacts:
|
||||||
|
paths:
|
||||||
|
- thesis.pdf
|
||||||
|
- abstract-cz.pdf
|
||||||
|
- abstract-en.pdf
|
25
Makefile
25
Makefile
@ -1,25 +1,14 @@
|
|||||||
NAME=thesis
|
NAME=thesis
|
||||||
ABSTRACT=abstract
|
ABSTRACT=abstract
|
||||||
REFS=refs.bib
|
LATEXMKOPTS=#-pdf #enable for forcing pdflatex
|
||||||
|
LATEXMK=latexmk $(LATEXMKOPTS)
|
||||||
TEX=pdflatex #possibly switch to lualatex/xelatex
|
|
||||||
BIB=bibtex #possibly switch to biber (remove backend=bibtex from biblatex opts)
|
|
||||||
|
|
||||||
RMF=rm -f
|
|
||||||
|
|
||||||
PDFS=$(NAME).pdf $(ABSTRACT)-en.pdf $(ABSTRACT)-cz.pdf
|
PDFS=$(NAME).pdf $(ABSTRACT)-en.pdf $(ABSTRACT)-cz.pdf
|
||||||
|
|
||||||
all: $(PDFS)
|
all:
|
||||||
|
$(LATEXMK) $(NAME)
|
||||||
$(NAME).pdf: $(wildcard *.tex) $(REFS) $(NAME).xmpdata
|
$(LATEXMK) $(ABSTRACT)-cz
|
||||||
$(TEX) $(NAME)
|
$(LATEXMK) $(ABSTRACT)-en
|
||||||
$(BIB) $(NAME)
|
|
||||||
$(TEX) $(NAME)
|
|
||||||
$(TEX) $(NAME)
|
|
||||||
|
|
||||||
$(ABSTRACT)-%.pdf: $(ABSTRACT)-%.tex $(ABSTRACT)-%.xmpdata metadata.tex
|
|
||||||
$(TEX) $<
|
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
$(RMF) *.log *.dvi *.aux *.toc *.lof *.lot *.out *.bbl *.blg *.xmpi
|
$(LATEXMK) -C
|
||||||
$(RMF) $(PDFS)
|
|
||||||
|
@ -9,9 +9,15 @@ What's new:
|
|||||||
- autobuilding of abstract PDF/A from metadata
|
- autobuilding of abstract PDF/A from metadata
|
||||||
- university-wide variants of the front page (nature faculty&bioinformatics!)
|
- university-wide variants of the front page (nature faculty&bioinformatics!)
|
||||||
- Czech localization with nicely named references
|
- Czech localization with nicely named references
|
||||||
|
- Dockerized environment
|
||||||
|
|
||||||
See the [pre-built version](build/thesis.pdf) for details
|
See the [pre-built version](build/thesis.pdf) for details
|
||||||
|
|
||||||
|
## CI configuration
|
||||||
|
|
||||||
|
The repository contains valid configuration for both *GitLab* CI and the *GitHub* actions.
|
||||||
|
No matter what GIT hosting you use, you can always download latest version of your thesis right from the artifacts!
|
||||||
|
|
||||||
## How-to
|
## How-to
|
||||||
|
|
||||||
1. Type `make`, check that everything compiles. You should get a `thesis.pdf` that passes the PDF/A validation. If not, complain.
|
1. Type `make`, check that everything compiles. You should get a `thesis.pdf` that passes the PDF/A validation. If not, complain.
|
||||||
|
Loading…
Reference in New Issue
Block a user