This is an automated email from the ASF dual-hosted git repository. mariofusco pushed a commit to branch quarkus-3.2LTS in repository https://gitbox.apache.org/repos/asf/incubator-kie-drools.git
commit 891fec98604660e93010902a9cf30eb217a572bf Author: jstastny-cz <[email protected]> AuthorDate: Thu Nov 30 15:34:28 2023 +0100 CI - limit generated jobs --- .ci/jenkins/config/branch.yaml | 17 +++++++++++++++++ .ci/jenkins/dsl/jobs.groovy | 10 +++++----- 2 files changed, 22 insertions(+), 5 deletions(-) diff --git a/.ci/jenkins/config/branch.yaml b/.ci/jenkins/config/branch.yaml index 72e06a7bce..d465d10d9b 100644 --- a/.ci/jenkins/config/branch.yaml +++ b/.ci/jenkins/config/branch.yaml @@ -1,3 +1,20 @@ +generation_config: + missing_environment: ignore + +job_types: + setup-branch: + disabled: true + nightly: + disabled: false + other: + disabled: true + pullrequest: + disabled: true + release: + disabled: true + tools: + disabled: true + environments: default: env_vars: diff --git a/.ci/jenkins/dsl/jobs.groovy b/.ci/jenkins/dsl/jobs.groovy index 7508c5d922..d6171b0704 100644 --- a/.ci/jenkins/dsl/jobs.groovy +++ b/.ci/jenkins/dsl/jobs.groovy @@ -207,11 +207,11 @@ Closure setupSonarProjectKeyEnv = { Closure paramsGetter -> Closure nightlyJobParamsGetter = isMainStream() ? JobParamsUtils.DEFAULT_PARAMS_GETTER : setup3AMCronTriggerJobParamsGetter KogitoJobUtils.createNightlyBuildChainBuildAndDeployJobForCurrentRepo(this, '', true) setupSpecificBuildChainNightlyJob('native', nightlyJobParamsGetter) -// setupSpecificBuildChainNightlyJob('sonarcloud', setupSonarProjectKeyEnv(nightlyJobParamsGetter)) -// setupQuarkusIntegrationJob('quarkus-main', nightlyJobParamsGetter) -// setupQuarkusIntegrationJob('quarkus-branch', nightlyJobParamsGetter) -// setupQuarkusIntegrationJob('quarkus-lts', nightlyJobParamsGetter) -// setupQuarkusIntegrationJob('native-lts', nightlyJobParamsGetter) +setupSpecificBuildChainNightlyJob('sonarcloud', setupSonarProjectKeyEnv(nightlyJobParamsGetter)) +setupQuarkusIntegrationJob('quarkus-main', nightlyJobParamsGetter) +setupQuarkusIntegrationJob('quarkus-branch', nightlyJobParamsGetter) +setupQuarkusIntegrationJob('quarkus-lts', nightlyJobParamsGetter) +setupQuarkusIntegrationJob('native-lts', nightlyJobParamsGetter) // Quarkus 3 nightly is exported to Kogito pipelines for easier integration // Release jobs --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
