crafting-interpreters/Jenkinsfile
Tom Willemse bfed2d4dd3 Try adding steps to cmakeBuild
Without steps it seems to only be configuring.
2020-11-15 21:06:54 -08:00

18 lines
446 B
Groovy

pipeline {
agent { dockerfile true }
stages {
stage('Build') {
steps {
cmakeBuild installation: 'InSearchPath',
buildDir: 'build',
sourceDir: 'src',
steps: [[args: '.']]
archiveArtifacts artifacts: 'Lox.jar',
fingerprint: false,
onlyIfSuccessful: true
}
}
}
}