22 lines
461 B
Groovy
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'
|
|
}
|
|
}
|
|
}
|
|
}
|