ium_151636/Jenkinsfile

16 lines
329 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")
2023-03-22 15:11:48 +01:00
git "https://git.wmi.amu.edu.pl/s151636/ium_151636.git"
2023-03-22 15:08:02 +01:00
echo ("sh: Shell Script")
2023-03-28 22:49:53 +02:00
sh "./script1"
2023-03-22 14:06:59 +01:00
}
}
}
}