ium_487187/Jenkinsfile
Jakub Zaręba baca0dd7e9 t
2023-03-27 20:36:43 +02:00

16 lines
284 B
Groovy

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