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