crafting-interpreters/Jenkinsfile

23 lines
541 B
Text
Raw Permalink Normal View History

pipeline {
agent { dockerfile true }
2020-11-16 06:12:30 +01:00
triggers {
pollSCM('H * * * *')
}
stages {
stage('Build') {
steps {
2020-11-16 06:01:39 +01:00
cmakeBuild installation: 'InSearchPath',
buildDir: 'build',
sourceDir: 'jlox',
steps: [[args: 'all']]
2020-11-16 06:01:39 +01:00
archiveArtifacts artifacts: 'jlox/_build/com/craftinginterpreters/lox/Lox.jar',
fingerprint: false,
onlyIfSuccessful: true
}
}
}
}