crafting-interpreters/Jenkinsfile

23 lines
549 B
Text
Raw Normal View History

pipeline {
agent {
dockerfile {
filename 'Dockerfile.build'
label 'crafting-interpreters-build'
}
}
stages {
stage('Build') {
steps {
cmakeBuild generator: 'Make',
buildDir: 'build',
sourceDir: 'src',
installation: 'InSearchPath'
archiveArtifacts artifacts: 'Lox.jar',
fingerprint: false,
onlyIfSuccessful: true
}
}
}
}