ium_444498/Jenkinsfile
2022-03-26 12:07:58 +01:00

22 lines
461 B
Groovy

pipeline {
agent any
stages {
stage('Hello') {
steps {
echo 'Hello world!'
}
}
stage('Checkout') {
steps {
git 'https://git.wmi.amu.edu.pl/s444498/ium_444498.git'
}
}
stage('Shell Script') {
steps {
sh "chmod +x -R ${env.WORKSPACE}"
sh './simple_init.sh'
}
}
}
}