From d1f39837997103804b55db22d8d6f03e1c302aac Mon Sep 17 00:00:00 2001 From: Philippe Zwietering Date: Mon, 22 Apr 2024 17:02:08 +0200 Subject: [PATCH] Agent is a directive, doesn't have curly braces... --- Jenkinsfile | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 826fe9d..8f7d723 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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...' } } } \ No newline at end of file