diff --git a/build/App.Jenkinsfile b/build/App.Jenkinsfile index fd4e7ea..c7f7829 100644 --- a/build/App.Jenkinsfile +++ b/build/App.Jenkinsfile @@ -2,7 +2,7 @@ pipeline { agent { - label 'docker' + label 'host' } options { @@ -28,6 +28,7 @@ pipeline { } } + /* stage("Code Quality") { steps { dir("./app") { @@ -43,7 +44,8 @@ pipeline { } } } - + */ + stage("Unit Test") { steps { dir("./app") { @@ -75,7 +77,8 @@ pipeline { } } } - + + /* stage("Integration Test") { steps { script { @@ -93,6 +96,7 @@ pipeline { } } } + */ }