ium_444356/Jenkinsfile_docker

14 lines
192 B
Plaintext
Raw Normal View History

2022-04-01 14:02:40 +02:00
pipeline {
agent {
2022-04-01 14:04:13 +02:00
dockerfile true
2022-04-01 14:02:40 +02:00
}
stages {
stage('Test') {
steps {
2022-04-02 13:16:22 +02:00
sh 'whoami'
2022-04-01 14:02:40 +02:00
sh './download.sh'
2022-04-02 12:47:47 +02:00
sh 'python3 ./Zajecia_2/main.py'
2022-04-01 14:02:40 +02:00
}
2022-04-01 13:12:51 +02:00
}
2022-04-01 14:02:40 +02:00
}
2022-04-01 13:12:51 +02:00
}