Last active
February 13, 2022 22:25
-
-
Save majorsilence/ad3359083fdd5fc23441a2930f09298d to your computer and use it in GitHub Desktop.
Rust Jenkins Pipeline
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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