ium_444421/Jenkinsfile
2022-04-10 20:43:31 +02:00

18 lines
433 B
Groovy

pipeline {
agent {
dockerfile true
}
stages {
stage('Check out from version control') {
steps {
checkout([$class: 'GitSCM', branches: [[name: '*/master']], extensions: [], userRemoteConfigs: [[credentialsId: 's444421', url: 'https://git.wmi.amu.edu.pl/s444421/ium_444421.git']]])
}
}
stage('Shell Script') {
steps {
sh 'ipython ./preparation.py'
}
}
}
}