Files
status-app/ci/Jenkinsfile.tests-ui
Siddarth Kumar a52c325580 fix(ci): add user in container to docker group at runtime
To fix errors like these that happen on newer Ubuntu 24.04

  [2026-08-05T07:43:07.967Z] + docker compose -p e2e-fleet -f
docker-compose.waku.yml up -d

  [2026-08-05T07:43:07.968Z] permission denied while trying to connect
to the docker API at unix:///var/run/docker.sock

  script returned exit code 1
2026-08-05 13:41:21 +05:30

186 lines
4.3 KiB
Groovy

#!/usr/bin/env groovy
library 'status-jenkins-lib@v1.9.46'
QT_VERSION = "6.11.0"
/* Options section can't access functions in objects. */
def isPRBuild = utils.isPRBuild()
pipeline {
agent {
dockerfile {
label 'linuxcontainer'
filename 'tests.Dockerfile'
dir 'ci'
args '--cap-add SYS_ADMIN ' +
'--security-opt apparmor:unconfined ' +
'--device /dev/fuse ' +
'--group-add docker ' +
'--volume=/var/run/docker.sock:/var/run/docker.sock ' +
'--network=host ' +
'--user jenkins'
}
}
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
)
disableRestartFromStage()
}
environment {
PLATFORM = 'tests/ui'
/* Improve make performance */
MAKEFLAGS = "-j${utils.getProcCount()} V=${params.VERBOSE}"
/* Makefile assumes the compiler folder is included */
QTDIR = "/opt/qt/${QT_VERSION}/gcc_64"
PATH = "${env.QTDIR}/bin:${env.PATH}"
/* Hack fix for params not being set in job on first run */
VERBOSE = "${params.VERBOSE}"
}
stages {
stage('Cleanup Workspace') {
steps {
sh './scripts/clean-git.sh'
}
}
stage('Fetch submodules') {
steps {
sh 'git submodule update --init --recursive'
}
}
stage('Check Translations') {
steps {
script {
checkTranslations()
}
}
}
stage('QML Lint') {
steps {
sh 'make qml-lint'
}
}
stage('Build StatusQ Tests') {
steps {
sh 'make statusq-tests'
}
}
stage('Build StatusQ Sanity Checker') {
steps {
sh 'make statusq-sanity-checker'
}
}
stage('Build Storybook') {
steps {
sh 'make storybook-build'
}
}
stage('Check StatusQ Tests') {
steps { script {
/* Needed for QGuiApplication to import QtQuick.Dialogs */
wrap([
$class: 'Xvfb',
autoDisplayName: true,
parallelBuild: true,
screen: '2560x1440x24',
]) {
sh('make run-statusq-tests')
}
} }
}
stage('Check StatusQ Sanity Checker') {
steps { script {
/* Needed for QGuiApplication to import QtQuick.Dialogs */
wrap([
$class: 'Xvfb',
autoDisplayName: true,
parallelBuild: true,
screen: '2560x1440x24',
]) {
sh('make run-statusq-sanity-checker')
}
} }
}
stage('Check Storybook Tests') {
steps { script {
/* Needed for QGuiApplication to import QtQuick.Dialogs */
wrap([
$class: 'Xvfb',
autoDisplayName: true,
parallelBuild: true,
screen: '2560x1440x24',
]) {
sh('make run-storybook-tests')
}
} }
}
stage('Check Storybook Pages Validator') {
steps { script {
/* Needed for QGuiApplication to import QtQuick.Dialogs */
wrap([
$class: 'Xvfb',
autoDisplayName: true,
parallelBuild: true,
screen: '2560x1440x24',
]) {
sh('make run-storybook-pages-validator')
}
} }
}
stage('Upload') {
steps { script {
env.PKG_URL = "${currentBuild.absoluteUrl}/consoleText"
} }
}
}
post {
success { script { github.notifyPR(true) } }
failure { script { github.notifyPR(false) } }
cleanup {
cleanWs(disableDeferredWipeout: true)
dir(env.WORKSPACE_TMP) { deleteDir() }
}
}
}
def checkTranslations() {
sh 'make update-translations'
def changes = sh(script: 'git diff --name-only ui/i18n/*.ts', returnStdout: true).trim()
if (changes) {
error("Translation files out of date.\n\nModified files:\n${changes}\n\nTo fix: run 'make update-translations' and commit changes.")
}
}