ium_487187/Jenkinsfile
2023-03-22 15:06:32 +01:00

16 lines
291 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'
}
}