2021-03-25 13:29:44 +01:00
|
|
|
pipeline {
|
2021-03-27 15:56:49 +01:00
|
|
|
agent any
|
|
|
|
stages {
|
2021-03-27 17:10:00 +01:00
|
|
|
stage('checkout: Check out from version control') {
|
2021-03-27 15:56:49 +01:00
|
|
|
steps {
|
2021-03-27 17:10:00 +01:00
|
|
|
git 'https://git.wmi.amu.edu.pl/s434788/ium_434700'
|
2021-03-27 15:56:49 +01:00
|
|
|
}
|
|
|
|
}
|
2021-03-27 16:13:17 +01:00
|
|
|
stage('Goodbye!') {
|
|
|
|
steps {
|
|
|
|
echo 'Goodbye!'
|
|
|
|
//Zarchiwizuj wynik
|
|
|
|
archiveArtifacts 'output.txt'
|
|
|
|
}
|
|
|
|
}
|
2021-03-27 15:56:49 +01:00
|
|
|
}
|
2021-03-25 13:29:44 +01:00
|
|
|
}
|