crafting-interpreters/Jenkinsfile

17 lines
404 B
Groovy

pipeline {
agent { dockerfile true }
stages {
stage('Build') {
steps {
cmakeBuild installation: 'InSearchPath',
buildDir: 'build',
sourceDir: 'src'
archiveArtifacts artifacts: 'Lox.jar',
fingerprint: false,
onlyIfSuccessful: true
}
}
}
}