Jenkinsfile

This commit is contained in:
Semyon Bezrukov 2024-09-09 19:30:13 +03:00
parent fb0f3616e0
commit ad91e4dbff

15
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,15 @@
pipeline {
agent {
label 'master'
}
parameters {
string name: 'test', defaultValue: 'test', description: 'test'
}
stages {
stage('Build') {
steps {
echo params.test
}
}
}
}