ium_444421/Jenkinsfile2

18 lines
449 B
Plaintext
Raw Normal View History

2022-03-26 19:29:43 +01:00
pipeline {
2022-04-10 12:03:30 +02:00
agent {
2022-04-10 21:01:42 +02:00
docker {image 'agakul/ium:3.0'}
2022-04-10 12:03:30 +02:00
}
2022-03-26 19:29:43 +01:00
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 {
2022-04-10 20:43:31 +02:00
sh 'ipython ./preparation.py'
2022-03-26 19:29:43 +01:00
}
}
}
2022-04-10 12:03:30 +02:00
}