From 000297dde15207377eb74054d3c55b99d4c54bc6 Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Sun, 15 Nov 2020 21:09:52 -0800 Subject: Use no arguments, update Lox.jar location ‘cmakeBuild’ is calling ‘make’, not ‘cmake --build’, so try passing in the ‘all’ target. --- Jenkinsfile | 4 ++-- 1 file 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 } -- cgit v1.2.3-54-g00ecf