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