Use no arguments, update Lox.jar location

‘cmakeBuild’ is calling ‘make’, not ‘cmake --build’, so try passing in the ‘all’
target.
This commit is contained in:
Tom Willemse 2020-11-15 21:09:52 -08:00
parent bfed2d4dd3
commit 000297dde1

4
Jenkinsfile vendored
View file

@ -7,9 +7,9 @@ pipeline {
cmakeBuild installation: 'InSearchPath',
buildDir: 'build',
sourceDir: 'src',
steps: [[args: '.']]
steps: [[args: 'all']]
archiveArtifacts artifacts: 'Lox.jar',
archiveArtifacts artifacts: 'build/com/craftinginterpreters/lox/Lox.jar',
fingerprint: false,
onlyIfSuccessful: true
}