crafting-interpreters/Jenkinsfile

18 lines
404 B
Text
Raw Normal View History

pipeline {
agent { dockerfile true }
stages {
stage('Build') {
steps {
2020-11-16 06:01:39 +01:00
cmakeBuild installation: 'InSearchPath',
buildDir: 'build',
2020-11-16 06:01:39 +01:00
sourceDir: 'src'
archiveArtifacts artifacts: 'Lox.jar',
fingerprint: false,
onlyIfSuccessful: true
}
}
}
}