ium-s301654/Jenkinsfile

11 lines
196 B
Plaintext
Raw Normal View History

2024-04-03 09:35:02 +02:00
pipeline {
agent { dockerfile true }
stages {
stage('Test') {
steps {
2024-04-03 09:37:02 +02:00
sh 'pip3 --version'
2024-04-03 09:40:27 +02:00
sh 'pip3 list'
2024-04-03 09:35:02 +02:00
}
}
}
}