status-desktop/ci/Jenkinsfile.tests-ui
2024-10-18 11:29:16 +02:00

129 lines
3.0 KiB
Groovy

#!/usr/bin/env groovy
library 'status-jenkins-lib@v1.9.7'
/* Options section can't access functions in objects. */
def isPRBuild = utils.isPRBuild()
pipeline {
agent { label 'linux && x86_64 && nix-2.19' }
parameters {
choice(
name: 'VERBOSE',
description: 'Level of verbosity based on nimbus-build-system setup.',
choices: ['0', '1', '2']
)
}
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: '1',
))
/* Abort old PR builds. */
disableConcurrentBuilds(
abortPrevious: isPRBuild
)
}
environment {
PLATFORM = 'tests/ui'
/* Improve make performance */
MAKEFLAGS = "-j4 V=${params.VERBOSE}"
PATH = "${env.QTDIR}/bin:${env.PATH}"
}
stages {
stage('Build StatusQ Tests') {
steps { script {
nix.shell('make statusq-tests', pure: true)
} }
}
stage('Build StatusQ Sanity Checker') {
steps { script {
nix.shell('make statusq-sanity-checker', pure: true)
} }
}
stage('Build Storybook') {
steps { script {
nix.shell('make storybook-build', pure: true)
} }
}
stage('Check StatusQ Tests') {
steps { script {
/* Needed for QGuiApplication to import QtQuick.Dialogs */
wrap([
$class: 'Xvfb',
autoDisplayName: true,
parallelBuild: true,
screen: '2560x1440x24',
]) {
nix.shell('make run-statusq-tests', pure: true)
}
} }
}
stage('Check StatusQ Sanity Checker') {
steps { script {
/* Needed for QGuiApplication to import QtQuick.Dialogs */
wrap([
$class: 'Xvfb',
autoDisplayName: true,
parallelBuild: true,
screen: '2560x1440x24',
]) {
nix.shell('make run-statusq-sanity-checker', pure: true)
}
} }
}
stage('Check Storybook Tests') {
steps { script {
/* Needed for QGuiApplication to import QtQuick.Dialogs */
wrap([
$class: 'Xvfb',
autoDisplayName: true,
parallelBuild: true,
screen: '2560x1440x24',
]) {
nix.shell('make run-storybook-tests', pure: true)
}
} }
}
stage('Check Storybook Pages Validator') {
steps { script {
/* Needed for QGuiApplication to import QtQuick.Dialogs */
wrap([
$class: 'Xvfb',
autoDisplayName: true,
parallelBuild: true,
screen: '2560x1440x24',
]) {
nix.shell('make run-storybook-pages-validator', pure: true)
}
} }
}
stage('Upload') {
steps { script {
env.PKG_URL = "${currentBuild.absoluteUrl}/consoleText"
} }
}
}
post {
success { script { github.notifyPR(true) } }
failure { script { github.notifyPR(false) } }
cleanup { cleanWs() }
}
}