16 lines
290 B
Groovy
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'
|
|
}
|
|
} |