Docker als agent in jenkinsfile
Some checks failed
gitea/real_analysis/pipeline/head There was a failure building this commit

This commit is contained in:
2025-02-23 22:39:47 +01:00
parent 9e486162f7
commit d371820b74

6
Jenkinsfile vendored
View File

@@ -2,6 +2,12 @@ pipeline {
agent any
stages {
stage('Build') {
agent {
docker {
image 'kjarosh/latex:2024.4'
reuseNode true
}
}
steps {
echo 'Starting build step...'
sh './scripts/build.sh'