Files
hello-world/Jenkinsfile
T
john 4d255fdcad
hello-world/pipeline/head This commit looks good
Initial commit
2026-05-03 09:02:01 +01:00

17 lines
271 B
Groovy

pipeline {
agent any
stages {
stage('Configure') {
steps {
sh 'cmake -S . -B build'
}
}
stage('Build') {
steps {
sh 'cmake --build build'
}
}
}
}