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