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