Skip to content

Instantly share code, notes, and snippets.

@majorsilence
Last active February 13, 2022 22:25
Show Gist options
  • Select an option

  • Save majorsilence/ad3359083fdd5fc23441a2930f09298d to your computer and use it in GitHub Desktop.

Select an option

Save majorsilence/ad3359083fdd5fc23441a2930f09298d to your computer and use it in GitHub Desktop.
Rust Jenkins Pipeline
pipeline {
agent none
stages {
stage('build and test') {
agent {
docker {
image 'rust:1.58.1'
}
}
steps {
echo "building"
sh """
cargo build --release
cargo test
"""
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment