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