summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Tom Willemse2020-11-15 21:09:52 -0800
committerGravatar Tom Willemse2020-11-15 21:10:57 -0800
commit000297dde15207377eb74054d3c55b99d4c54bc6 (patch)
treeea27f8dbd7d6eb21cd9bd6f6cf09b08d24ac6d19
parentbfed2d4dd3ff459399af192bf142af4658f200ea (diff)
downloadcrafting-interpreters-000297dde15207377eb74054d3c55b99d4c54bc6.tar.gz
crafting-interpreters-000297dde15207377eb74054d3c55b99d4c54bc6.zip
Use no arguments, update Lox.jar location
‘cmakeBuild’ is calling ‘make’, not ‘cmake --build’, so try passing in the ‘all’ target.
-rw-r--r--Jenkinsfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Jenkinsfile b/Jenkinsfile
index 824cea4..36f8ab5 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -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
}