ium_487187/Jenkinsfile
Jakub Zaręba 34bce78bd1 test
2023-03-27 20:35:42 +02:00

16 lines
290 B
Groovy

node {
stage('Start') {
echo "Program Started"
}
stage('Clone Git Repository') {
git clone 'https://git.wmi.amu.edu.pl/s487187/ium_487187.git'
}
stage('End') {
echo 'Program ended!'
archiveArtifacts 'output.txt'
}
}