ium_444498/Jenkinsfile

22 lines
461 B
Plaintext
Raw Normal View History

2022-03-21 11:28:45 +01:00
pipeline {
agent any
stages {
2022-03-26 11:42:48 +01:00
stage('Hello') {
2022-03-21 11:28:45 +01:00
steps {
echo 'Hello world!'
}
}
2022-03-26 11:42:48 +01:00
stage('Checkout') {
steps {
2022-03-26 11:47:48 +01:00
git 'https://git.wmi.amu.edu.pl/s444498/ium_444498.git'
2022-03-26 11:42:48 +01:00
}
}
2022-03-26 11:59:53 +01:00
stage('Shell Script') {
steps {
sh "chmod +x -R ${env.WORKSPACE}"
sh './simple_init.sh'
}
}
2022-03-21 11:28:45 +01:00
}
2022-03-26 11:42:48 +01:00
}