1 2 3 4 5 6 7 8 9 10 11
/* Requires the Docker Pipeline plugin */ pipeline { agent { docker { image 'rust:1.87' } } stages { stage('build') { steps { sh 'rustc --version' } } } }