Created
February 13, 2022 22:29
-
-
Save majorsilence/3ce5bdd3600be29bdb1a9d9a26b0db94 to your computer and use it in GitHub Desktop.
C++ 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') { | |
| agent { | |
| docker { | |
| image 'gcc:9.4.0' | |
| } | |
| } | |
| steps { | |
| echo "building" | |
| sh """ | |
| g++ --version | |
| """ | |
| } | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment