2023-03-22 14:52:10 +01:00
|
|
|
node {
|
2023-03-22 15:06:32 +01:00
|
|
|
|
|
|
|
stage('Start') {
|
|
|
|
echo "Program Started"
|
2023-03-22 14:52:10 +01:00
|
|
|
}
|
2023-03-22 15:04:33 +01:00
|
|
|
|
2023-03-22 15:05:27 +01:00
|
|
|
stage('Clone Git Repository') {
|
2023-03-27 20:35:42 +02:00
|
|
|
git clone 'https://git.wmi.amu.edu.pl/s487187/ium_487187.git'
|
2023-03-22 15:04:33 +01:00
|
|
|
}
|
|
|
|
|
2023-03-22 15:06:32 +01:00
|
|
|
stage('End') {
|
|
|
|
echo 'Program ended!'
|
|
|
|
|
2023-03-22 14:52:10 +01:00
|
|
|
archiveArtifacts 'output.txt'
|
|
|
|
}
|
|
|
|
}
|