Unverified Commit 2b234a21 authored by skoulouzis's avatar skoulouzis Committed by GitHub

Update Jenkinsfile

parent f1f76ea3
node { pipeline {
stage('Clone sources') { agent any
git branch: 'DRIP_3.0', url: 'https://github.com/skoulouzis/DRIP.git' tools {
// Install the Maven version configured as "M3" and add it to the path.
maven "maven-3.6.2"
jdk "openjdk-11"
} }
stages {
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"
sh "cd drip-planner && python3 -m venv venv && venv/bin/pip3 install -r requirements.txt" sh "cd drip-planner && python3 -m venv venv && venv/bin/pip3 install -r requirements.txt"
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"
sh "pwd && ls"
}
} }
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"
}
}
stage('Deploy') {
steps {
echo 'Deploying'
}
}
} }
} }
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