Compare commits

..

7 Commits

Author SHA1 Message Date
23c5c26472 Artifacts opslaan
All checks were successful
gitea/real_analysis/pipeline/head This commit looks good
2026-01-22 23:43:59 +01:00
b27c0d1872 Geen sudo meer nodig
Some checks failed
gitea/real_analysis/pipeline/head There was a failure building this commit
2026-01-22 23:41:42 +01:00
b92d0a5a97 Smerige sudo
Some checks failed
gitea/real_analysis/pipeline/head There was a failure building this commit
2026-01-22 23:35:56 +01:00
7fbca3031a Poging om jenkins uit het slop te trekken
Some checks failed
gitea/real_analysis/pipeline/head There was a failure building this commit
2026-01-22 23:33:21 +01:00
12ba818631 Fix on template
Some checks failed
gitea/real_analysis/pipeline/head There was a failure building this commit
2025-11-21 10:15:10 +01:00
bc10cf8736 https ipv ssh voor de buildserver
Some checks failed
gitea/real_analysis/pipeline/head There was a failure building this commit
2025-11-16 00:50:32 +01:00
83c9218b81 Vieze workspace
Some checks failed
gitea/real_analysis/pipeline/head There was a failure building this commit
2025-11-16 00:45:26 +01:00
3 changed files with 10 additions and 9 deletions

2
.gitmodules vendored
View File

@@ -1,4 +1,4 @@
[submodule "latex-homework"]
path = src/template
url = git@github.com:philippezwietering/latex-homework-fix-libertinusdisplay.git
url = https://github.com/gijs-pennings/latex-homework.git
branch = master

15
Jenkinsfile vendored
View File

@@ -2,15 +2,11 @@ pipeline {
agent any
stages {
stage('Build') {
agent {
docker {
image 'kjarosh/latex:2025.1'
reuseNode true
}
}
steps {
echo 'Starting build step...'
sh 'latexmk -pdf -outdir=out main_text.tex'
archiveArtifacts artifacts: 'out/main_text.pdf'
}
}
@@ -19,8 +15,13 @@ pipeline {
stage('Deploy') {
steps{
echo 'Starting deploy step...'
sh 'cp assignments/main_text.pdf /var/www/zwietering.eu/pdfs/real_analysis.pdf'
sh 'cp out/main_text.pdf /var/www/zwietering.eu/pdfs/real_analysis.pdf'
}
}
}
post {
cleanup {
cleanWs()
}
}
}