Kaynağa Gözat

Updated Jenkinsfile

fooser 7 yıl önce
ebeveyn
işleme
292b093459
1 değiştirilmiş dosya ile 2 ekleme ve 2 silme
  1. 2 2
      Jenkinsfile

+ 2 - 2
Jenkinsfile

@@ -5,12 +5,12 @@ pipeline {
         stage('Build') {
         stage('Build') {
             steps {
             steps {
                 echo 'Building...'
                 echo 'Building...'
-                python3.7 -m poetry install
+                bash -c python3.7 -m poetry install
             }
             }
         }
         }
         stage('Test') {
         stage('Test') {
             steps {
             steps {
-                python3.7 -m tox -e py37
+                bash -c python3.7 -m tox -e py37
             }
             }
         }
         }
         stage('Deploy') {
         stage('Deploy') {