removed user temporarly, created make ci task

This commit is contained in:
Henry Oswald
2018-03-06 10:30:05 +00:00
parent 4e6514b17e
commit 96a237fb74
5 changed files with 16 additions and 35 deletions

22
Jenkinsfile vendored
View File

@@ -9,27 +9,9 @@ pipeline {
}
stages {
stage('Build') {
stage('CI') {
steps {
sh 'make build'
}
}
stage('Unit Tests') {
steps {
sh 'DOCKER_COMPOSE_FLAGS="-f docker-compose.ci.yml" make test_unit'
}
}
stage('Acceptance Tests') {
steps {
sh 'DOCKER_COMPOSE_FLAGS="-f docker-compose.ci.yml" up --build test_acceptance'
}
}
stage('Package and publish build') {
steps {
sh 'make publish'
sh 'make ci'
}
}