summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Tom Willemse2020-11-15 21:01:39 -0800
committerGravatar Tom Willemse2020-11-15 21:01:39 -0800
commit2c2bae1b46d8759535bfaa954226db2190cf78b9 (patch)
treeb33bfb4c72285e9be00d08fdf9c03f444c680342
parent3ef60b7cf7dc92c5d5ae9b055b857991c7b66d2f (diff)
downloadcrafting-interpreters-2c2bae1b46d8759535bfaa954226db2190cf78b9.tar.gz
crafting-interpreters-2c2bae1b46d8759535bfaa954226db2190cf78b9.zip
Use the default generator for CMake
-rw-r--r--Jenkinsfile6
1 files 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