ium_151636/Jenkinsfile

17 lines
320 B
Plaintext
Raw Normal View History

2023-03-22 14:06:59 +01:00
pipeline {
agent any
stages {
2023-03-22 15:08:02 +01:00
stage('Stage1') {
2023-03-22 14:06:59 +01:00
steps {
2023-03-22 15:08:02 +01:00
echo ("checkout: check out from version control")
git clone https://git.wmi.amu.edu.pl/s151636/ium_151636.git
echo ("sh: Shell Script")
2023-03-22 14:06:59 +01:00
}
}
}
}