mirror of
https://gitlab.cs.fau.de/ik15ydit/latexandmore.git
synced 2024-12-04 17:05:02 +01:00
various changes for autobuild
This commit is contained in:
parent
cb091e7872
commit
82b3792063
@ -7,9 +7,87 @@ before_script:
|
|||||||
- apt-get update
|
- apt-get update
|
||||||
- apt-get install -y build-essential poppler-utils
|
- apt-get install -y build-essential poppler-utils
|
||||||
|
|
||||||
|
.make: &make |
|
||||||
|
make -C $CI_JOB_NAME
|
||||||
|
|
||||||
|
|
||||||
AuD:
|
AuD:
|
||||||
script:
|
script:
|
||||||
- make -C $CI_JOB_NAME
|
*make
|
||||||
artifacts:
|
artifacts:
|
||||||
paths:
|
paths:
|
||||||
- $CI_JOB_NAME/document.pdf
|
- $CI_JOB_NAME/aud_zusammenfassung.pdf
|
||||||
|
|
||||||
|
FFI:
|
||||||
|
script:
|
||||||
|
*make
|
||||||
|
artifacts:
|
||||||
|
paths:
|
||||||
|
- $CI_JOB_NAME/ForensInf2_Zusammenfassung.pdf
|
||||||
|
|
||||||
|
GDS:
|
||||||
|
script:
|
||||||
|
*make
|
||||||
|
artifacts:
|
||||||
|
paths:
|
||||||
|
- $CI_JOB_NAME/gds_braindump_ss16.pdf
|
||||||
|
- $CI_JOB_NAME/gds_braindump_ss17.pdf
|
||||||
|
|
||||||
|
GTI:
|
||||||
|
script:
|
||||||
|
*make
|
||||||
|
artifacts:
|
||||||
|
paths:
|
||||||
|
- $CI_JOB_NAME/gti_zusammenfassung.pdf
|
||||||
|
|
||||||
|
IDB:
|
||||||
|
script:
|
||||||
|
*make
|
||||||
|
artifacts:
|
||||||
|
paths:
|
||||||
|
- $CI_JOB_NAME/idb_skript_greeny/IDB.pdf
|
||||||
|
- $CI_JOB_NAME/klausur_ws1516/klausur_idb_WS1516.pdf
|
||||||
|
- $CI_JOB_NAME/klausur_ws16/klausur_idb_SS16.pdf
|
||||||
|
- $CI_JOB_NAME/klausur_ws16/klausur_idb_SS16_ML.pdf
|
||||||
|
|
||||||
|
KonzMod:
|
||||||
|
script:
|
||||||
|
*make
|
||||||
|
artifacts:
|
||||||
|
paths:
|
||||||
|
- $CI_JOB_NAME/konzmod_zusammenfassung.pdf
|
||||||
|
|
||||||
|
MatheC1:
|
||||||
|
script:
|
||||||
|
*make
|
||||||
|
artifacts:
|
||||||
|
paths:
|
||||||
|
- $CI_JOB_NAME/mathec1_zussammenfassung.pdf
|
||||||
|
|
||||||
|
MatheC4:
|
||||||
|
script:
|
||||||
|
*make
|
||||||
|
artifacts:
|
||||||
|
paths:
|
||||||
|
- $CI_JOB_NAME/MaC4Cheatsheet.pdf
|
||||||
|
|
||||||
|
RK:
|
||||||
|
script:
|
||||||
|
*make
|
||||||
|
artifacts:
|
||||||
|
paths:
|
||||||
|
- $CI_JOB_NAME/KlausurLV_SS14_September.pdf
|
||||||
|
- $CI_JOB_NAME/KlausurLV_WS1415_Maerz.pdf
|
||||||
|
|
||||||
|
ThProg:
|
||||||
|
script:
|
||||||
|
*make
|
||||||
|
artifacts:
|
||||||
|
paths:
|
||||||
|
- $CI_JOB_NAME/Koinduktion_reduktion.pdf
|
||||||
|
- $CI_JOB_NAME/Konfluenz.pdf
|
||||||
|
- $CI_JOB_NAME/Polynomordnung.pdf
|
||||||
|
- $CI_JOB_NAME/PumpingLemma.pdf
|
||||||
|
- $CI_JOB_NAME/Strukturelle_Induktion.pdf
|
||||||
|
- $CI_JOB_NAME/SystemF.pdf
|
||||||
|
- $CI_JOB_NAME/ThProgCheatsheet.pdf
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
all:
|
all:
|
||||||
pdflatex ForensInf2_Zusammenfassung.tex
|
pdflatex ForensInf2_Zusammenfassung.tex
|
||||||
gitlab:
|
gitlab:
|
||||||
pdflatex -jobname=$(NAME).pdf ForensInf2_Zusammenfassung.tex
|
pdflatex -jobname=$(NAME)-build ForensInf2_Zusammenfassung.tex
|
||||||
|
|
||||||
.PHONY: all gitlab
|
.PHONY: all gitlab
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
all: gds_braindump_ss17.pdf
|
all: gds_braindump_ss16.pdf gds_braindump_ss17.pdf
|
||||||
|
|
||||||
continuous: $(PDF).continuous
|
continuous: $(PDF).continuous
|
||||||
|
|
||||||
|
@ -10,7 +10,7 @@ continuous: $(PDF).continuous
|
|||||||
$(PDF): $(PDF).pdf
|
$(PDF): $(PDF).pdf
|
||||||
|
|
||||||
%.pdf: %.tex
|
%.pdf: %.tex
|
||||||
latexmk -jobname=$(@:%.pdf=%) -pdf -f $<
|
latexmk -jobname=gti_zusammenfassung -pdf -f $<
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
latexmk -c -f $(PDF).tex
|
latexmk -c -f $(PDF).tex
|
||||||
|
@ -10,7 +10,7 @@ continuous: $(PDF).continuous
|
|||||||
$(PDF): $(PDF).pdf
|
$(PDF): $(PDF).pdf
|
||||||
|
|
||||||
%.pdf: %.tex
|
%.pdf: %.tex
|
||||||
latexmk -jobname=$(@:%.pdf=%) -pdf $<
|
latexmk -jobname=konzmod_zusammenfassung -pdf $<
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
latexmk -c -f $(PDF).tex
|
latexmk -c -f $(PDF).tex
|
||||||
|
@ -10,7 +10,7 @@ continuous: $(PDF).continuous
|
|||||||
$(PDF): $(PDF).pdf
|
$(PDF): $(PDF).pdf
|
||||||
|
|
||||||
%.pdf: %.tex
|
%.pdf: %.tex
|
||||||
latexmk -jobname=$(@:%.pdf=%) -pdf $<
|
latexmk -jobname=mathec1_zussammenfassung -pdf $<
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
latexmk -c -f $(PDF).tex
|
latexmk -c -f $(PDF).tex
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
all: KlausurLV_SS14_September2014.tex KlausurLV_WS1415_Maerz2015.tex
|
all: KlausurLV_SS14_September.pdf KlausurLV_WS1415_Maerz.pdf
|
||||||
|
|
||||||
continuous: $(PDF).continuous
|
continuous: $(PDF).continuous
|
||||||
|
|
||||||
@ -8,12 +8,12 @@ rmpdf:
|
|||||||
@-rm -f *.pdf
|
@-rm -f *.pdf
|
||||||
|
|
||||||
cleanup:
|
cleanup:
|
||||||
@-rm -f *.aux *.fdb_latexmk *.fls *.log
|
@-rm -f *.aux *.fdb_latexmk *.fls *.log *.out
|
||||||
|
|
||||||
%.continuous: %.pdf
|
%.continuous: %.pdf
|
||||||
@latexmk -quiet -jobname=$(@:%.continuous=%) -pvc -pdf $(@:%.continuous=%).tex
|
@latexmk -quiet -jobname=$(@:%.continuous=%) -pvc -pdf $(@:%.continuous=%).tex
|
||||||
|
|
||||||
%.pdf: %.tex
|
%.pdf: %.tex
|
||||||
@latexmk -quiet -jobname=$(@:%.pdf=%) -pdf -halt-on-error $< 1>/dev/null
|
@latexmk -quiet -jobname=$(@:%.pdf=%) -pdf -halt-on-error $<
|
||||||
|
|
||||||
.PHONY: all continuous cleanup single clean rmpdf
|
.PHONY: all continuous cleanup single clean rmpdf
|
||||||
|
Loading…
Reference in New Issue
Block a user