SI/Jenkinsfile

12 lines
138 B
Plaintext
Raw Permalink Normal View History

2020-12-01 18:23:16 +01:00
pipeline {
agent any
2020-12-03 16:49:52 +01:00
2020-12-01 18:23:16 +01:00
stages {
stage('build') {
steps {
2020-12-03 16:49:52 +01:00
echo 'building..'
}
}
}
2020-12-01 18:23:16 +01:00
}