ci-test/.ci/Jenkinsfile
2025-01-07 13:21:52 -08:00

18 lines
358 B
Groovy

pipeline {
/* choose agents per stage */
agent none
stages {
stage('Build') {
agent {
docker {
image 'gcc:latest'
args '-v ${PWD}:/src -w /src'
}
}
steps {
sh 'gcc -o hello main.c'
}
}
}
}