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:
parent
bfed2d4dd3
commit
000297dde1
1 changed files with 2 additions and 2 deletions
4
Jenkinsfile
vendored
4
Jenkinsfile
vendored
|
@ -7,9 +7,9 @@ pipeline {
|
||||||
cmakeBuild installation: 'InSearchPath',
|
cmakeBuild installation: 'InSearchPath',
|
||||||
buildDir: 'build',
|
buildDir: 'build',
|
||||||
sourceDir: 'src',
|
sourceDir: 'src',
|
||||||
steps: [[args: '.']]
|
steps: [[args: 'all']]
|
||||||
|
|
||||||
archiveArtifacts artifacts: 'Lox.jar',
|
archiveArtifacts artifacts: 'build/com/craftinginterpreters/lox/Lox.jar',
|
||||||
fingerprint: false,
|
fingerprint: false,
|
||||||
onlyIfSuccessful: true
|
onlyIfSuccessful: true
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue