ソースを参照

Updated Jenkinsfile

fooser 7 年 前
コミット
292b093459
1 ファイル変更2 行追加2 行削除
  1. 2 2
      Jenkinsfile

+ 2 - 2
Jenkinsfile

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