libtree/Jenkinsfile
Dominik Meyer 2ef7a8a478 Squashed 'cmake/' content from commit fca8133
git-subtree-dir: cmake
git-subtree-split: fca81333c7148bfe46dfd17d4602c5a695ebfd3a
2019-11-14 11:06:07 +01:00

26 lines
288 B
Groovy

pipeline {
agent none
options {
// Only keep the 1 most recent builds
buildDiscarder(logRotator(numToKeepStr: "1"))
}
stages {
stage("Build")
{
agent {
label 'c++'
}
steps {
echo "build"
}
}
}
}