jenkins create out dir off the bat
Some checks failed
studiorailgun/Renderer/pipeline/head There was a failure building this commit

This commit is contained in:
austin 2024-12-03 11:34:41 -05:00
parent 33751bdc71
commit d90330c5ca

3
Jenkinsfile vendored
View File

@ -7,6 +7,7 @@ pipeline {
stage('Setup') { stage('Setup') {
steps { steps {
sh "chmod +x -R ${env.WORKSPACE}" sh "chmod +x -R ${env.WORKSPACE}"
sh "mkdir ./out/build/default" //cmake is seemingly not building directories itself, so doing it manually at the top
} }
} }
stage ('Check Environment') { stage ('Check Environment') {
@ -95,7 +96,7 @@ pipeline {
steps { steps {
script { script {
catchError { catchError {
sh 'cd ./out/build/default && ctest && cd ../../..' sh 'cd ./out/build && ctest && cd ../../..'
} }
} }
} }