66 lines
1.7 KiB
Plaintext
66 lines
1.7 KiB
Plaintext
library 'status-jenkins-lib@v1.2.17'
|
|
|
|
pipeline {
|
|
agent { label 'linux' }
|
|
|
|
parameters {
|
|
string(
|
|
name: 'BRANCH',
|
|
defaultValue: 'develop',
|
|
description: 'Name of branch to build.'
|
|
)
|
|
}
|
|
|
|
options {
|
|
timestamps()
|
|
disableConcurrentBuilds()
|
|
/* Go requires a certain directory structure */
|
|
checkoutToSubdirectory('src/github.com/status-im/status-go')
|
|
/* manage how many builds we keep */
|
|
buildDiscarder(logRotator(
|
|
numToKeepStr: '5',
|
|
daysToKeepStr: '30',
|
|
))
|
|
}
|
|
|
|
environment {
|
|
TARGET = 'linux'
|
|
STATUS_PATH = 'src/github.com/status-im/status-go'
|
|
GOPATH = "${env.WORKSPACE}"
|
|
PATH = "/usr/local/go/bin:${env.PATH}:${env.GOPATH}/bin"
|
|
}
|
|
|
|
stages {
|
|
stage('Prep') { steps { dir(env.STATUS_PATH) { script {
|
|
println("Version: ${utils.getVersion()}")
|
|
println("Git Branch: ${utils.branchName()}")
|
|
println("Git Commit: ${utils.gitCommit()}")
|
|
} } } }
|
|
|
|
stage('Setup') { steps { dir(env.STATUS_PATH) {
|
|
sh 'GO111MODULE=off make setup-build modvendor-install'
|
|
} } }
|
|
|
|
stage('Vendoring check') { steps { dir(env.STATUS_PATH) {
|
|
/* fail build if vendoring hasn't been done */
|
|
sh 'GO111MODULE=on make vendor && git diff --exit-code --no-color --stat vendor/'
|
|
} } }
|
|
|
|
stage('Lint') { steps { dir(env.STATUS_PATH) {
|
|
sh 'make lint'
|
|
} } }
|
|
|
|
stage('Canary') { steps { dir(env.STATUS_PATH) {
|
|
sh 'make canary-test'
|
|
} } }
|
|
|
|
stage('Unit Tests') { steps { dir(env.STATUS_PATH) {
|
|
sh 'make test-unit'
|
|
} } }
|
|
|
|
stage('Race E2E Tests') { steps { dir(env.STATUS_PATH) {
|
|
sh 'make test-e2e-race'
|
|
} } }
|
|
} // stages
|
|
} // pipeline
|