From 32f09ed7c84459c0e038686afe3aee718127aeb3 Mon Sep 17 00:00:00 2001 From: Samir Shetty Date: Tue, 8 Aug 2023 10:31:13 -0700 Subject: [PATCH] Temporarily enable all tests on all branch builds --- Jenkinsfile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 90af3524c5..c9e59ababb 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -102,7 +102,7 @@ pipeline { parameters { booleanParam( name: 'NIGHTLY', - defaultValue: false, + defaultValue: true, // Temporarily set to true for all branches description: 'Run tests on all agents and environment including: FIPS' ) string( @@ -1170,5 +1170,9 @@ def defaultCucumberFilterTags(env) { } // For all other branch builds, only run the @smoke tests by default - return '@smoke' + // return '@smoke' + + // Temporarily run all tests on all branches. The above line should be + // uncommented when 13.1 is released. + return '' }