2023-11-21 16:39:11 +01:00
|
|
|
#!/usr/bin/env groovy
|
2023-04-05 16:48:47 +02:00
|
|
|
library 'status-jenkins-lib@v1.7.0'
|
2021-05-06 17:14:58 +02:00
|
|
|
|
2019-02-25 18:48:44 +01:00
|
|
|
pipeline {
|
2023-11-29 15:15:36 +01:00
|
|
|
agent { label 'linux && x86_64 && nix-2.14' }
|
2019-02-25 18:48:44 +01:00
|
|
|
|
|
|
|
parameters {
|
|
|
|
string(
|
|
|
|
name: 'BRANCH',
|
|
|
|
defaultValue: 'develop',
|
|
|
|
description: 'Name of branch to build.'
|
|
|
|
)
|
2023-11-21 16:39:11 +01:00
|
|
|
string(
|
|
|
|
name: 'UNIT_TEST_COUNT',
|
|
|
|
defaultValue: getDefaultUnitTestCount(),
|
|
|
|
description: 'How many times to run tests?'
|
|
|
|
)
|
|
|
|
booleanParam(
|
|
|
|
name: 'UNIT_TEST_FAILFAST',
|
|
|
|
defaultValue: getDefaultUnitTestFailfast(),
|
|
|
|
description: 'Should the job fail fast on first test failure?'
|
|
|
|
)
|
2019-02-25 18:48:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
options {
|
|
|
|
timestamps()
|
2023-05-29 12:40:00 +02:00
|
|
|
/* Prevent Jenkins jobs from running forever */
|
2023-11-21 16:39:11 +01:00
|
|
|
timeout(time: getDefaultTimeout(), unit: 'MINUTES')
|
2019-02-25 18:48:44 +01:00
|
|
|
disableConcurrentBuilds()
|
|
|
|
/* manage how many builds we keep */
|
|
|
|
buildDiscarder(logRotator(
|
2021-03-04 18:08:34 +01:00
|
|
|
numToKeepStr: '5',
|
2019-02-25 18:48:44 +01:00
|
|
|
daysToKeepStr: '30',
|
|
|
|
))
|
|
|
|
}
|
|
|
|
|
|
|
|
environment {
|
2023-01-03 15:40:45 +01:00
|
|
|
TARGET = 'tests'
|
2023-09-18 17:50:26 +02:00
|
|
|
DB_CONT = "status-go-test-db-${env.EXECUTOR_NUMBER.toInteger() + 1}"
|
|
|
|
DB_PORT = "${5432 + env.EXECUTOR_NUMBER.toInteger()}"
|
2023-01-03 15:40:45 +01:00
|
|
|
TMPDIR = "${WORKSPACE_TMP}"
|
2022-12-02 19:03:35 +01:00
|
|
|
GOPATH = "${WORKSPACE_TMP}/go"
|
2023-08-18 14:24:07 +02:00
|
|
|
GOCACHE = "${WORKSPACE_TMP}/gocache"
|
2022-12-02 19:03:35 +01:00
|
|
|
PATH = "${PATH}:${GOPATH}/bin"
|
|
|
|
REPO_SRC = "${GOPATH}/src/github.com/status-im/status-go"
|
2019-02-25 18:48:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
stages {
|
2022-12-02 19:03:35 +01: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 18:48:44 +01:00
|
|
|
|
2022-12-02 19:03:35 +01: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 18:48:44 +01:00
|
|
|
|
2023-06-21 13:21:26 +01:00
|
|
|
stage('Migration') {
|
|
|
|
steps { script {
|
2023-06-28 09:49:24 +01:00
|
|
|
nix.shell('make migration-check', pure: false)
|
2023-06-21 13:21:26 +01:00
|
|
|
} }
|
|
|
|
}
|
2019-12-20 13:02:44 +01:00
|
|
|
|
2022-12-02 19:03:35 +01:00
|
|
|
stage('Lint') {
|
|
|
|
steps { script {
|
2023-08-18 14:09:04 +02:00
|
|
|
nix.shell('make lint', pure: true)
|
2022-12-02 19:03:35 +01:00
|
|
|
} }
|
|
|
|
}
|
2019-02-25 18:48:44 +01:00
|
|
|
|
2022-12-02 19:03:35 +01:00
|
|
|
stage('Canary') {
|
|
|
|
steps { script {
|
2023-08-18 14:09:04 +02:00
|
|
|
nix.shell('make canary-test', pure: true)
|
2022-12-02 19:03:35 +01:00
|
|
|
} }
|
|
|
|
}
|
2019-02-25 18:48:44 +01:00
|
|
|
|
2022-12-02 19:03:35 +01:00
|
|
|
stage('Unit Tests') {
|
2023-09-18 17:50:26 +02:00
|
|
|
environment {
|
|
|
|
TEST_POSTGRES_PORT = "${env.DB_PORT}"
|
|
|
|
}
|
2022-12-02 19:03:35 +01:00
|
|
|
steps { script {
|
2023-02-21 13:25:50 +01:00
|
|
|
db = docker.image('postgres:9.6-alpine').withRun([
|
|
|
|
"--name=${DB_CONT}",
|
2023-09-18 17:50:26 +02:00
|
|
|
"--env=POSTGRES_HOST_AUTH_METHOD=trust",
|
|
|
|
"--publish=${DB_PORT}:${DB_PORT}",
|
|
|
|
].join(' '), "-p ${DB_PORT}") { c ->
|
2023-08-28 10:58:40 +01:00
|
|
|
nix.shell('make generate-handlers', pure: true)
|
2022-12-02 19:03:35 +01:00
|
|
|
nix.shell('make test-unit V=1', pure: false)
|
|
|
|
}
|
|
|
|
} }
|
2023-02-21 13:25:50 +01:00
|
|
|
post { cleanup { /* Leftover DB containers. */
|
|
|
|
sh "docker rm ${DB_CONT} || true"
|
|
|
|
} }
|
2022-12-02 19:03:35 +01:00
|
|
|
}
|
2019-02-25 18:48:44 +01:00
|
|
|
} // stages
|
2023-01-03 15:40:45 +01:00
|
|
|
|
|
|
|
post {
|
2023-08-10 12:46:57 +02:00
|
|
|
always {
|
|
|
|
script { env.PKG_URL = "${currentBuild.absoluteUrl}/consoleText" }
|
2023-11-22 11:37:05 +01:00
|
|
|
junit testResults: '**/report.xml',
|
|
|
|
skipOldReports: true,
|
|
|
|
skipPublishingChecks: true
|
|
|
|
publishHTML target: [
|
|
|
|
allowMissing: true,
|
|
|
|
alwaysLinkToLastBuild: true,
|
|
|
|
keepAll: true,
|
|
|
|
reportDir: 'reports',
|
|
|
|
reportFiles: 'test_stats.txt',
|
|
|
|
reportName: 'Reports',
|
|
|
|
reportTitles: 'Test Stats'
|
|
|
|
]
|
2023-11-30 12:09:16 +01:00
|
|
|
script {
|
|
|
|
if (isTestNightlyJob()) {
|
|
|
|
archiveArtifacts artifacts: '**/report.xml, **/test.log'
|
|
|
|
}
|
|
|
|
}
|
2023-08-10 12:46:57 +02:00
|
|
|
}
|
2023-01-03 15:40:45 +01:00
|
|
|
success { script { github.notifyPR(true) } }
|
|
|
|
failure { script { github.notifyPR(false) } }
|
2023-11-22 11:37:05 +01:00
|
|
|
cleanup {
|
|
|
|
dir(env.TMPDIR) { deleteDir() }
|
|
|
|
sh "make git-clean"
|
|
|
|
}
|
2023-01-03 15:40:45 +01:00
|
|
|
} // post
|
2019-02-25 18:48:44 +01:00
|
|
|
} // pipeline
|
2023-11-21 16:39:11 +01:00
|
|
|
|
2023-11-30 12:09:16 +01:00
|
|
|
def isTestNightlyJob() { env.JOB_BASE_NAME == 'tests-nightly' }
|
2023-11-21 16:39:11 +01:00
|
|
|
|
2023-11-30 12:09:16 +01:00
|
|
|
def getDefaultUnitTestCount() { isTestNightlyJob() ? '20' : '1' }
|
2023-11-21 16:39:11 +01:00
|
|
|
|
2023-11-30 12:09:16 +01:00
|
|
|
def getDefaultUnitTestFailfast() { isTestNightlyJob() ? false : true }
|
|
|
|
|
|
|
|
def getDefaultTimeout() { isTestNightlyJob() ? 5*60 : 40 }
|