12 lines
227 B
Groovy
12 lines
227 B
Groovy
pipeline {
|
|
agent any
|
|
|
|
stages {
|
|
stage('Stage 1') {
|
|
steps {
|
|
sh 'rm -rf artifacts'
|
|
git 'https://git.wmi.amu.edu.pl/s495719/ium_495719.git'
|
|
}
|
|
}
|
|
}
|
|
} |