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' } } stage('dist') { steps { archiveArtifacts artifacts: 'target/x86_64-pc-windows-gnu/release/cggitem_sets.exe' } } } }