2022-12-02 18:03:35 +00:00
|
|
|
library 'status-jenkins-lib@v1.6.4'
|
2021-05-06 15:14:58 +00:00
|
|
|
|
2019-02-25 17:48:44 +00:00
|
|
|
pipeline {
|
2022-05-11 10:24:30 +00:00
|
|
|
agent { label 'linux && x86_64 && go-1.18' }
|
2019-02-25 17:48:44 +00:00
|
|
|
|
|
|
|
parameters {
|
|
|
|
string(
|
|
|
|
name: 'BRANCH',
|
|
|
|
defaultValue: 'develop',
|
|
|
|
description: 'Name of branch to build.'
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
options {
|
|
|
|
timestamps()
|
|
|
|
disableConcurrentBuilds()
|
|
|
|
/* manage how many builds we keep */
|
|
|
|
buildDiscarder(logRotator(
|
2021-03-04 17:08:34 +00:00
|
|
|
numToKeepStr: '5',
|
2019-02-25 17:48:44 +00:00
|
|
|
daysToKeepStr: '30',
|
|
|
|
))
|
|
|
|
}
|
|
|
|
|
|
|
|
environment {
|
2022-12-02 18:03:35 +00:00
|
|
|
TARGET = 'linux'
|
|
|
|
GOPATH = "${WORKSPACE_TMP}/go"
|
|
|
|
PATH = "${PATH}:${GOPATH}/bin"
|
|
|
|
REPO_SRC = "${GOPATH}/src/github.com/status-im/status-go"
|
2019-02-25 17:48:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
stages {
|
2022-12-02 18:03:35 +00:00
|
|
|
stage('Prep') {
|
|
|
|
steps { /* Go needs to find status-go in GOPATH. */
|
|
|
|
sh "mkdir -p \$(dirname ${REPO_SRC})"
|
|
|
|
sh "ln -s ${WORKSPACE} ${REPO_SRC}"
|
|
|
|
}
|
|
|
|
}
|
2019-02-25 17:48:44 +00:00
|
|
|
|
2022-12-02 18:03:35 +00:00
|
|
|
stage('Vendor Check') {
|
|
|
|
steps { script {
|
|
|
|
nix.shell('make install-modvendor', pure: false)
|
|
|
|
nix.shell('make vendor', pure: false)
|
|
|
|
/* fail build if vendoring hasn't been done */
|
|
|
|
nix.shell('git diff --exit-code --no-color --stat vendor/')
|
|
|
|
} }
|
|
|
|
}
|
2019-02-25 17:48:44 +00:00
|
|
|
|
2019-12-20 12:02:44 +00:00
|
|
|
|
2022-12-02 18:03:35 +00:00
|
|
|
stage('Lint') {
|
|
|
|
steps { script {
|
|
|
|
nix.shell('make install-lint', pure: false)
|
|
|
|
nix.shell('make lint', pure: false)
|
|
|
|
} }
|
|
|
|
}
|
2019-02-25 17:48:44 +00:00
|
|
|
|
2022-12-02 18:03:35 +00:00
|
|
|
stage('Canary') {
|
|
|
|
steps { script {
|
|
|
|
nix.shell('make canary-test', pure: false)
|
|
|
|
} }
|
|
|
|
}
|
2019-02-25 17:48:44 +00:00
|
|
|
|
2022-12-02 18:03:35 +00:00
|
|
|
stage('Unit Tests') {
|
|
|
|
steps { script {
|
|
|
|
docker.image('postgres:9.6-alpine').withRun(
|
|
|
|
'-e POSTGRES_HOST_AUTH_METHOD=trust -p 5432:5432'
|
|
|
|
) { c ->
|
|
|
|
nix.shell('make test-unit V=1', pure: false)
|
|
|
|
}
|
|
|
|
} }
|
|
|
|
}
|
2019-02-25 17:48:44 +00:00
|
|
|
} // stages
|
|
|
|
} // pipeline
|