Skip to content

Instantly share code, notes, and snippets.

@majorsilence
Created February 13, 2022 22:28
Show Gist options
  • Save majorsilence/0c30e61818e8808d71332068849087ca to your computer and use it in GitHub Desktop.
Save majorsilence/0c30e61818e8808d71332068849087ca to your computer and use it in GitHub Desktop.
C Jenkins Pipeline
pipeline {
agent none
stages {
stage('build') {
agent {
docker {
image 'gcc:9.4.0'
}
}
steps {
echo "building"
sh """
gcc --version
"""
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment