Initial commit
hello-world/pipeline/head This commit looks good

This commit is contained in:
2026-05-03 09:02:01 +01:00
commit 4d255fdcad
4 changed files with 40 additions and 0 deletions
Vendored
+17
View File
@@ -0,0 +1,17 @@
pipeline {
agent any
stages {
stage('Configure') {
steps {
sh 'cmake -S . -B build'
}
}
stage('Build') {
steps {
sh 'cmake --build build'
}
}
}
}