2024-08-20 07:38:38 +00:00
|
|
|
#!/usr/bin/env groovy
|
|
|
|
library 'status-jenkins-lib@v1.9.6'
|
2024-07-04 10:50:15 +00:00
|
|
|
|
|
|
|
pipeline {
|
|
|
|
agent { label 'linux && x86_64 && nix-2.19' }
|
|
|
|
|
|
|
|
parameters {
|
|
|
|
string(
|
|
|
|
name: 'BRANCH',
|
|
|
|
defaultValue: 'develop',
|
|
|
|
description: 'Name of branch to build.'
|
|
|
|
)
|
2024-09-24 15:33:26 +00:00
|
|
|
booleanParam(
|
|
|
|
name: 'INTEGRATION_TESTS_REPORT_CODECOV',
|
|
|
|
defaultValue: true,
|
|
|
|
description: 'Should the job report test coverage to Codecov?'
|
|
|
|
)
|
2024-07-04 10:50:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
options {
|
|
|
|
timestamps()
|
|
|
|
/* Prevent Jenkins jobs from running forever */
|
|
|
|
timeout(time: 30, unit: 'MINUTES')
|
|
|
|
disableConcurrentBuilds()
|
|
|
|
/* manage how many builds we keep */
|
|
|
|
buildDiscarder(logRotator(
|
|
|
|
numToKeepStr: '5',
|
|
|
|
daysToKeepStr: '30',
|
|
|
|
artifactNumToKeepStr: '1',
|
|
|
|
))
|
|
|
|
}
|
|
|
|
|
|
|
|
environment {
|
|
|
|
PLATFORM = 'tests-rpc'
|
|
|
|
PKG_URL = "${currentBuild.absoluteUrl}/consoleText"
|
2024-09-24 15:33:26 +00:00
|
|
|
|
|
|
|
/* Hack-fix for params not being set in env on first job run. */
|
|
|
|
BRANCH = "${params.BRANCH}"
|
|
|
|
INTEGRATION_TESTS_REPORT_CODECOV = "${params.INTEGRATION_TESTS_REPORT_CODECOV}"
|
2024-07-04 10:50:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
stages {
|
|
|
|
stage('RPC Tests') {
|
|
|
|
steps { script {
|
2024-09-24 15:33:26 +00:00
|
|
|
withCredentials([
|
|
|
|
string(
|
|
|
|
credentialsId: 'codecov-repository-upload-token',
|
|
|
|
variable: 'CODECOV_TOKEN'
|
|
|
|
),
|
|
|
|
]) {
|
|
|
|
nix.shell('make run-integration-tests', pure: false)
|
|
|
|
}
|
2024-07-04 10:50:15 +00:00
|
|
|
} }
|
|
|
|
}
|
|
|
|
} // stages
|
|
|
|
|
|
|
|
post {
|
|
|
|
always {
|
|
|
|
script {
|
2024-08-20 07:38:38 +00:00
|
|
|
archiveArtifacts(
|
2024-09-24 15:33:26 +00:00
|
|
|
artifacts: 'integration-tests/reports/*.xml, integration-tests/*.log, integration-tests/coverage/coverage.html',
|
2024-08-20 07:38:38 +00:00
|
|
|
allowEmptyArchive: true,
|
|
|
|
)
|
2024-07-04 10:50:15 +00:00
|
|
|
junit(
|
2024-09-24 15:33:26 +00:00
|
|
|
testResults: 'integration-tests/reports/*.xml',
|
2024-07-04 10:50:15 +00:00
|
|
|
skipOldReports: true,
|
|
|
|
skipPublishingChecks: true,
|
2024-08-20 07:38:38 +00:00
|
|
|
skipMarkingBuildUnstable: true,
|
2024-07-04 10:50:15 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
success { script { github.notifyPR(true) } }
|
|
|
|
failure { script { github.notifyPR(false) } }
|
2024-08-20 07:38:38 +00:00
|
|
|
cleanup { sh 'make git-clean' }
|
2024-07-04 10:50:15 +00:00
|
|
|
} // post
|
|
|
|
} // pipeline
|