2023-09-28 12:44:13 +00:00
|
|
|
#!/usr/bin/env groovy
|
|
|
|
library 'status-jenkins-lib@v1.7.13'
|
|
|
|
|
|
|
|
pipeline {
|
|
|
|
|
|
|
|
environment {
|
2023-10-06 08:33:42 +00:00
|
|
|
QT_QPA_PLATFORMTHEME = "qt5ct"
|
|
|
|
QT_LOGGING_DEBUG = 1
|
|
|
|
QT_DEBUG_PLUGINS = 1
|
|
|
|
|
2023-09-28 12:44:13 +00:00
|
|
|
SQUISH_DIR = "/opt/squish-runner-7.1-20230222-1555"
|
|
|
|
PYTHONPATH = "${SQUISH_DIR}/lib:${SQUISH_DIR}/lib/python:${PYTHONPATH}"
|
|
|
|
LD_LIBRARY_PATH = "${SQUISH_DIR}/lib:${SQUISH_DIR}/python3/lib:${LD_LIBRARY_PATH}"
|
|
|
|
|
|
|
|
TESTRAIL_URL = "https://ethstatus.testrail.net"
|
|
|
|
}
|
|
|
|
|
|
|
|
parameters {
|
2023-10-09 09:38:48 +00:00
|
|
|
gitParameter(
|
|
|
|
branch: '',
|
|
|
|
branchFilter: 'origin/(.*)',
|
|
|
|
defaultValue: 'master',
|
|
|
|
description: 'Git branch to checkout.',
|
|
|
|
name: 'GIT_REF',
|
|
|
|
quickFilterEnabled: false,
|
|
|
|
selectedValue: 'DEFAULT',
|
|
|
|
sortMode: 'ASCENDING_SMART',
|
|
|
|
tagFilter: '*',
|
|
|
|
type: 'PT_BRANCH'
|
|
|
|
)
|
2023-10-13 11:22:50 +00:00
|
|
|
choice(
|
|
|
|
name: 'AGENT',
|
|
|
|
choices: [
|
|
|
|
'linux',
|
|
|
|
'linux-01',
|
|
|
|
'linux-02',
|
|
|
|
'linux-03',
|
|
|
|
'linux-04',
|
|
|
|
'linux-05',
|
|
|
|
],
|
2023-10-13 14:37:06 +00:00
|
|
|
description: 'Agent name to run tests on it.'
|
2023-10-13 11:22:50 +00:00
|
|
|
)
|
2023-09-28 12:44:13 +00:00
|
|
|
string(
|
2023-10-13 11:22:50 +00:00
|
|
|
name: 'BUILD_URL',
|
2023-10-10 08:30:56 +00:00
|
|
|
description: 'Link to tar.gz file.',
|
|
|
|
defaultValue: ''
|
2023-09-28 12:44:13 +00:00
|
|
|
)
|
|
|
|
string(
|
|
|
|
name: 'TEST_NAME',
|
2023-10-09 09:38:48 +00:00
|
|
|
description: 'Paste test name/part of test name to run specific test.',
|
2023-09-28 12:44:13 +00:00
|
|
|
defaultValue: ''
|
|
|
|
)
|
|
|
|
string(
|
|
|
|
name: 'TEST_SCOPE',
|
2023-10-09 09:38:48 +00:00
|
|
|
description: 'Paste tag to run specific scope of tests.',
|
2023-09-28 12:44:13 +00:00
|
|
|
defaultValue: ''
|
|
|
|
)
|
|
|
|
string(
|
|
|
|
name: 'TESTRAIL_RUN_ID',
|
2023-10-09 09:38:48 +00:00
|
|
|
description: 'Test run ID in Test Rail.',
|
2023-09-28 12:44:13 +00:00
|
|
|
defaultValue: ''
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2023-10-13 11:22:50 +00:00
|
|
|
agent {
|
|
|
|
label "${params.AGENT} && x86_64 && qt-5.15.2"
|
|
|
|
}
|
|
|
|
|
2023-09-28 12:44:13 +00:00
|
|
|
options {
|
|
|
|
timestamps()
|
|
|
|
/* Prevent Jenkins jobs from running forever */
|
|
|
|
timeout(time: 120, unit: 'MINUTES')
|
|
|
|
/* manage how many builds we keep */
|
|
|
|
buildDiscarder(logRotator(
|
|
|
|
numToKeepStr: '10',
|
|
|
|
daysToKeepStr: '30',
|
|
|
|
artifactNumToKeepStr: '3',
|
|
|
|
))
|
|
|
|
}
|
|
|
|
|
|
|
|
stages {
|
2023-10-13 14:37:06 +00:00
|
|
|
stage('Download') {
|
2023-10-10 08:30:56 +00:00
|
|
|
steps {
|
|
|
|
script {
|
2023-10-13 11:22:50 +00:00
|
|
|
sh "mkdir -p './tmp/pkg/'"
|
|
|
|
if (params.BUILD_URL != "") {
|
|
|
|
fileOperations([
|
|
|
|
fileDownloadOperation(
|
|
|
|
url: params.BUILD_URL,
|
|
|
|
userName: "",
|
|
|
|
password: "",
|
|
|
|
targetLocation: "./tmp/pkg/",
|
|
|
|
targetFileName: "StatusIm-Desktop.tar.gz",
|
|
|
|
)
|
|
|
|
])
|
|
|
|
} else {
|
|
|
|
copyArtifacts(
|
|
|
|
projectName: "status-desktop/systems/linux/x86_64/package/",
|
|
|
|
filter: 'pkg/*-x86_64.tar.gz',
|
|
|
|
selector: lastWithArtifacts(),
|
|
|
|
target: "./tmp"
|
|
|
|
)
|
|
|
|
}
|
2023-10-13 14:37:06 +00:00
|
|
|
def pkg_path = "./${utils.findFile('tmp/pkg/*tar.gz')}"
|
|
|
|
sh "tar -zxvf '${pkg_path}' -C './tmp'"
|
|
|
|
env.APP_DIR = "./${utils.findFile('tmp/*.AppImage')}"
|
2023-10-10 08:30:56 +00:00
|
|
|
}
|
|
|
|
}
|
2023-09-28 12:44:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
stage('Setup') {
|
|
|
|
steps { script {
|
|
|
|
sh 'pip3 install --user -r requirements.txt'
|
|
|
|
} }
|
|
|
|
}
|
|
|
|
|
|
|
|
stage('Test') {
|
2023-10-13 11:22:50 +00:00
|
|
|
steps {
|
2023-10-13 14:37:06 +00:00
|
|
|
wrap([
|
|
|
|
$class: 'Xvfb',
|
|
|
|
autoDisplayName: true,
|
|
|
|
parallelBuild: true,
|
|
|
|
screen: '1920x1080x24',
|
|
|
|
additionalOptions: '-dpi 1'
|
|
|
|
]){
|
2023-10-13 11:22:50 +00:00
|
|
|
script {
|
|
|
|
sh "fluxbox &"
|
|
|
|
def cmd = ''
|
|
|
|
if (params.TEST_NAME != "") {
|
|
|
|
cmd = cmd + " -k ${params.TEST_NAME}"
|
|
|
|
}
|
|
|
|
if (params.TEST_SCOPE != "") {
|
|
|
|
cmd = cmd + " -m ${params.TEST_SCOPE}"
|
|
|
|
}
|
2023-10-13 14:37:06 +00:00
|
|
|
sh "cp -f ./configs/_local.py.ci ./configs/_local.py"
|
|
|
|
withCredentials([
|
|
|
|
usernamePassword(
|
|
|
|
credentialsId: 'test-rail-api-devops',
|
|
|
|
usernameVariable: 'TESTRAIL_USR',
|
|
|
|
passwordVariable: 'TESTRAIL_PSW')
|
|
|
|
]) {
|
|
|
|
sh "python3 -m pytest ${cmd} --disable-warnings --alluredir=./allure-results"
|
2023-10-13 11:22:50 +00:00
|
|
|
}
|
|
|
|
}
|
2023-09-28 12:44:13 +00:00
|
|
|
}
|
2023-10-13 11:22:50 +00:00
|
|
|
}
|
2023-09-28 12:44:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
post {
|
|
|
|
always { script {
|
|
|
|
allure([
|
|
|
|
jdk: '',
|
|
|
|
properties: [],
|
|
|
|
results: [[path: 'allure-results']],
|
|
|
|
reportBuildPolicy: 'ALWAYS',
|
|
|
|
])
|
|
|
|
}}
|
|
|
|
cleanup { cleanWs() }
|
|
|
|
}
|
|
|
|
}
|