From 2c2bae1b46d8759535bfaa954226db2190cf78b9 Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Sun, 15 Nov 2020 21:01:39 -0800 Subject: Use the default generator for CMake --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 23e7246..385b483 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -4,10 +4,10 @@ pipeline { stages { stage('Build') { steps { - cmakeBuild generator: 'Make', + cmakeBuild installation: 'InSearchPath', buildDir: 'build', - sourceDir: 'src', - installation: 'InSearchPath' + sourceDir: 'src' + archiveArtifacts artifacts: 'Lox.jar', fingerprint: false, onlyIfSuccessful: true -- cgit v1.2.3-54-g00ecf