From 47dbc1b2977fd2fd6ceb34386f824eec1e456152 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Wed, 4 Dec 2024 14:37:24 +0000 Subject: [PATCH] jenkins: Disable stages that I don't need right now Signed-off-by: Michael Tremer --- Jenkinsfile | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index 917e14b52..60dea3853 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -6,6 +6,11 @@ pipeline { Run the build and test suite on various distributions... */ stage("Run Tests on Multiple Distributions") { + // Disabled to be faster with testing the following stages + when { + expression { false } + } + matrix { axes { axis { @@ -121,6 +126,11 @@ pipeline { } stage("Coverage Tests") { + // Disabled to be faster with testing the following stages + when { + expression { false } + } + parallel { /* Run Pakfire through Clang's Static Analyzer... -- 2.39.5