Compare commits
No commits in common. "4f97b110f32c3ddefc963599301e8d56ebf2b3f5" and "409971cc9264adbca6af4f89613920b1f5f0d2b8" have entirely different histories.
4f97b110f3
...
409971cc92
34
.github/workflows/main.yml
vendored
34
.github/workflows/main.yml
vendored
@ -1,34 +0,0 @@
|
|||||||
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
|
|
||||||
|
|
@ -1,15 +0,0 @@
|
|||||||
#
|
|
||||||
# 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,14 +1,25 @@
|
|||||||
NAME=thesis
|
NAME=thesis
|
||||||
ABSTRACT=abstract
|
ABSTRACT=abstract
|
||||||
LATEXMKOPTS=#-pdf #enable for forcing pdflatex
|
REFS=refs.bib
|
||||||
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:
|
all: $(PDFS)
|
||||||
$(LATEXMK) $(NAME)
|
|
||||||
$(LATEXMK) $(ABSTRACT)-cz
|
$(NAME).pdf: $(wildcard *.tex) $(REFS) $(NAME).xmpdata
|
||||||
$(LATEXMK) $(ABSTRACT)-en
|
$(TEX) $(NAME)
|
||||||
|
$(BIB) $(NAME)
|
||||||
|
$(TEX) $(NAME)
|
||||||
|
$(TEX) $(NAME)
|
||||||
|
|
||||||
|
$(ABSTRACT)-%.pdf: $(ABSTRACT)-%.tex $(ABSTRACT)-%.xmpdata metadata.tex
|
||||||
|
$(TEX) $<
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
$(LATEXMK) -C
|
$(RMF) *.log *.dvi *.aux *.toc *.lof *.lot *.out *.bbl *.blg *.xmpi
|
||||||
|
$(RMF) $(PDFS)
|
||||||
|
@ -9,15 +9,9 @@ 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