ium_487187/Jenkinsfile

16 lines
284 B
Plaintext
Raw Normal View History

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:36:43 +02:00
git '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'
}
}