pipeline {
agent any
stages {
stage('Build') {
steps {
sh '~/.cargo/bin/cargo build'
}
post {
always {
cleanWs()