Commit f1f76ea3 authored by Spiros Koulouzis's avatar Spiros Koulouzis

removed steps

parent db126323
...@@ -3,7 +3,6 @@ node { ...@@ -3,7 +3,6 @@ node {
git branch: 'DRIP_3.0', url: 'https://github.com/skoulouzis/DRIP.git' git branch: 'DRIP_3.0', url: 'https://github.com/skoulouzis/DRIP.git'
} }
stage('Build') { stage('Build') {
steps {
echo 'Building' echo 'Building'
git branch: 'DRIP_3.0', url: 'https://github.com/skoulouzis/DRIP.git' git branch: 'DRIP_3.0', url: 'https://github.com/skoulouzis/DRIP.git'
sh "mvn -Dmaven.test.skip=true install" sh "mvn -Dmaven.test.skip=true install"
...@@ -11,20 +10,14 @@ node { ...@@ -11,20 +10,14 @@ node {
sh "cd ../" sh "cd ../"
sh "cd sure_tosca-flask-server && python3 -m venv venv && venv/bin/pip3 install -r requirements.txt && venv/bin/pip3 install -r test-requirements.txt" sh "cd sure_tosca-flask-server && python3 -m venv venv && venv/bin/pip3 install -r requirements.txt && venv/bin/pip3 install -r test-requirements.txt"
} }
}
stage('Test') { stage('Test') {
steps {
echo 'Testing' echo 'Testing'
sh "mvn test" sh "mvn test"
sh "cd drip-planner && venv/bin/python3 -m unittest discover" sh "cd drip-planner && venv/bin/python3 -m unittest discover"
sh "cd sure_tosca-flask-server && venv/bin/python3 -m unittest discover" sh "cd sure_tosca-flask-server && venv/bin/python3 -m unittest discover"
} }
}
stage('Package') { stage('Package') {
steps {
echo 'Deploying' echo 'Deploying'
sh "cd drip-manager && mvn -Dmaven.test.skip=true install dockerfile:build" sh "cd drip-manager && mvn -Dmaven.test.skip=true install dockerfile:build"
}
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment