Agent is a directive, doesn't have curly braces...

This commit is contained in:
2024-04-22 17:02:08 +02:00
parent 929978fa87
commit d1f3983799

21
Jenkinsfile vendored
View File

@@ -1,18 +1,17 @@
pipeline {
agent {linux} {
stages {
stage('Build') {
steps {
echo 'Starting build step...'
sh './scripts/build.sh'
}
agent {linux}
stages {
stage('Build') {
steps {
echo 'Starting build step...'
sh './scripts/build.sh'
}
}
// Testing latex isn't really a thing, but we could do basic sanity checks in the future?
// Testing latex isn't really a thing, but we could do basic sanity checks in the future?
stage('Deploy') {
echo 'Starting deploy step...'
}
stage('Deploy') {
echo 'Starting deploy step...'
}
}
}