This is an automated email from the ASF dual-hosted git repository. jstastnycz pushed a commit to branch quarkus-3.2LTS in repository https://gitbox.apache.org/repos/asf/incubator-kie-kogito-pipelines.git
commit 96b2f1c9ff0e2002c2ade5c72d730a5d882ce6f8 Author: jstastny-cz <[email protected]> AuthorDate: Thu Nov 30 15:34:19 2023 +0100 CI - limit generated jobs --- .ci/jenkins/config/branch.yaml | 17 +++++++++++++++++ .ci/jenkins/dsl/jobs.groovy | 18 +++++++++--------- 2 files changed, 26 insertions(+), 9 deletions(-) diff --git a/.ci/jenkins/config/branch.yaml b/.ci/jenkins/config/branch.yaml index 97173aed..b9d7d82c 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: native: env_vars: diff --git a/.ci/jenkins/dsl/jobs.groovy b/.ci/jenkins/dsl/jobs.groovy index 03f0dee6..9405599e 100644 --- a/.ci/jenkins/dsl/jobs.groovy +++ b/.ci/jenkins/dsl/jobs.groovy @@ -62,15 +62,15 @@ if (isMainStream()) { setupQuarkus3NightlyJob() } -// KogitoJobUtils.createEnvironmentIntegrationBranchNightlyJob(this, 'quarkus-main') -// KogitoJobUtils.createEnvironmentIntegrationBranchNightlyJob(this, 'quarkus-lts') -// KogitoJobUtils.createEnvironmentIntegrationBranchNightlyJob(this, 'quarkus-branch') -// KogitoJobUtils.createEnvironmentIntegrationBranchNightlyJob(this, 'native-lts') -// KogitoJobUtils.createEnvironmentIntegrationBranchNightlyJob(this, 'quarkus-3', []) { script -> -// def jobParams = JobParamsUtils.DEFAULT_PARAMS_GETTER(script) -// jobParams.env.put('INTEGRATION_BRANCH_CURRENT', '2.x') -// return jobParams -// } +KogitoJobUtils.createEnvironmentIntegrationBranchNightlyJob(this, 'quarkus-main') +KogitoJobUtils.createEnvironmentIntegrationBranchNightlyJob(this, 'quarkus-lts') +KogitoJobUtils.createEnvironmentIntegrationBranchNightlyJob(this, 'quarkus-branch') +KogitoJobUtils.createEnvironmentIntegrationBranchNightlyJob(this, 'native-lts') +KogitoJobUtils.createEnvironmentIntegrationBranchNightlyJob(this, 'quarkus-3', []) { script -> + def jobParams = JobParamsUtils.DEFAULT_PARAMS_GETTER(script) + jobParams.env.put('INTEGRATION_BRANCH_CURRENT', '2.x') + return jobParams +} // Release setupReleaseArtifactsJob() --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
