瀏覽代碼

Updated Jenkinsfile

fooser 7 年之前
父節點
當前提交
01cc878955
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      Jenkinsfile

+ 2 - 2
Jenkinsfile

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