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-22 15:11:48 +01:00
|
|
|
|
|
|
|
|
2023-03-22 15:08:02 +01:00
|
|
|
|
2023-03-22 14:06:59 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|