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