2023-03-28 20:15:03 +02:00
|
|
|
pipeline {
|
|
|
|
agent any
|
|
|
|
stages {
|
2023-03-28 21:21:07 +02:00
|
|
|
stage('checkout: Check out from version control') {
|
2023-03-28 20:45:54 +02:00
|
|
|
steps {
|
|
|
|
checkout([$class: 'GitSCM',
|
|
|
|
branches: [[name: '*/master']],
|
|
|
|
extensions: [],
|
2023-03-28 21:21:07 +02:00
|
|
|
userRemoteConfigs: [[credentialsId: 's487194', url: 'https://git.wmi.amu.edu.pl/s487194/ium_487194']]])
|
2023-03-28 20:45:54 +02:00
|
|
|
}
|
|
|
|
}
|
2023-03-28 20:15:03 +02:00
|
|
|
stage('Stage 1') {
|
|
|
|
steps {
|
|
|
|
echo 'Hello world!'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|