foo/Jenkinsfile

16 lines
221 B
Plaintext
Raw Normal View History

2024-09-09 16:30:13 +00:00
pipeline {
agent {
label 'master'
}
parameters {
string name: 'test', defaultValue: 'test', description: 'test'
}
stages {
stage('Build') {
steps {
echo params.test
}
}
}
}