Skip to content

Commit

Permalink
try again
Browse files Browse the repository at this point in the history
  • Loading branch information
adambabik committed Jun 11, 2019
1 parent 6ca3281 commit e05cf82
Showing 1 changed file with 11 additions and 10 deletions.
21 changes: 11 additions & 10 deletions _assets/ci/Jenkinsfile.tests
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ pipeline {
BUILD_PLATFORM = 'linux'
STATUS_PATH = 'src/github.com/status-im/status-go'
CI_DIR = "${env.STATUS_PATH}/_assets/ci"
PATH = "${env.PATH}:${env.GOPATH}/bin"
}

stages {
Expand All @@ -36,24 +37,24 @@ pipeline {
println("Git Commit: ${lib.gitCommit()}")
} } }

stage('Setup') { steps {
stage('Setup') { steps { dir(env.STATUS_PATH) {
sh 'make setup-build'
} }
} } }

stage('Lint') { steps {
stage('Lint') { steps { dir(env.STATUS_PATH) {
sh 'make lint'
} }
} } }

stage('Canary') { steps {
stage('Canary') { steps { dir(env.STATUS_PATH) {
sh 'make canary-test'
} }
} } }

stage('Unit Tests') { steps {
stage('Unit Tests') { steps { dir(env.STATUS_PATH) {
sh 'make test-unit'
} }
} } }

stage('Race E2E Tests') { steps {
stage('Race E2E Tests') { steps { dir(env.STATUS_PATH) {
sh 'make test-e2e-race'
} }
} } }
} // stages
} // pipeline

0 comments on commit e05cf82

Please sign in to comment.