eive-tmtc/automation/Jenkinsfile

15 lines
219 B
Plaintext
Raw Normal View History

2023-06-10 14:58:15 +02:00
pipeline {
agent {
2023-06-11 11:56:39 +02:00
docker {
2023-06-11 12:14:52 +02:00
image 'eive-tmtc-ci:d2'
2023-06-10 14:58:15 +02:00
}
}
stages {
stage('Package') {
steps {
sh 'pip install .'
}
}
}
}