pipeline { agent { label 'master' } stages { stage('sources') { steps { checkout scm } } stage('install') { steps { sh 'cargo install cross' } } stage('build') { steps { sh 'cross build --target x86_64-pc-windows-gnu --release' } } } }