ium_151636/Jenkinsfile

21 lines
432 B
Plaintext
Raw Normal View History

2023-05-11 20:49:42 +02:00
pipeline {
agent any
stages {
stage('Stage1') {
steps {
echo ("checkout: check out from version control")
git "https://git.wmi.amu.edu.pl/s151636/ium_151636.git"
echo ("sh: Shell Script")
sh "./script1"
echo ("copyArtifacts")
echo("archiveArtifacts")
}
}
}
}