Jenkinsfile 411 B

12345678910111213141516171819202122
  1. pipeline {
  2. agent any
  3. stages {
  4. stage('Build') {
  5. steps {
  6. echo 'Building...'
  7. python3.7 -m poetry install
  8. }
  9. }
  10. stage('Test') {
  11. steps {
  12. python3.7 -m tox -e py37
  13. }
  14. }
  15. stage('Deploy') {
  16. steps {
  17. echo 'Deploying....'
  18. }
  19. }
  20. }
  21. }