This is an automated email from the ASF dual-hosted git repository.
eduardocerqueira pushed a commit to branch 10.1.x
in repository https://gitbox.apache.org/repos/asf/incubator-kie-tools.git
The following commit(s) were added to refs/heads/10.1.x by this push:
new df52ecd0469 Jenkins Pipelines - cors-proxy: removed default BASE REF
as it will be propagated from trigger pipeline - udpating chrome-extensions
df52ecd0469 is described below
commit df52ecd0469e0c3b0d38caad602fa8b3880893ff
Author: Eduardo Cerqueira <[email protected]>
AuthorDate: Thu May 15 15:40:59 2025 -0400
Jenkins Pipelines
- cors-proxy: removed default BASE REF as it will be propagated from
trigger pipeline
- udpating chrome-extensions
---
.../release-jobs/Jenkinsfile.chrome-extensions | 21 ++++++++++++---------
.ci/jenkins/release-jobs/Jenkinsfile.cors-proxy | 2 +-
2 files changed, 13 insertions(+), 10 deletions(-)
diff --git a/.ci/jenkins/release-jobs/Jenkinsfile.chrome-extensions
b/.ci/jenkins/release-jobs/Jenkinsfile.chrome-extensions
index cc4a1add9c2..9f151937170 100644
--- a/.ci/jenkins/release-jobs/Jenkinsfile.chrome-extensions
+++ b/.ci/jenkins/release-jobs/Jenkinsfile.chrome-extensions
@@ -17,7 +17,7 @@
pipeline {
agent {
docker {
- image 'docker.io/apache/incubator-kie-tools-ci-build:10.1.999'
+ image 'apache/incubator-kie-tools-ci-build:10.1.999'
args '--shm-size=2g --privileged --group-add docker'
}
}
@@ -27,11 +27,12 @@ pipeline {
}
parameters {
- booleanParam(description: 'Dry run', name: 'DRY_RUN', defaultValue:
true)
- string(description: 'Release Version', name: 'RELEASE_VERSION',
defaultValue: '0.0.0')
- string(description: 'Base Ref', name: 'BASE_REF')
- string(description: 'Upload Asset Url', name: 'UPLOAD_ASSET_URL')
- string(description: 'Release Candidate Version', name:
'RELEASE_CANDIDATE_VERSION', defaultValue: '')
+ booleanParam(name: 'DRY_RUN', description: 'Dry run', defaultValue:
true)
+ string(name: 'RELEASE_VERSION', description: 'Release Version',
defaultValue: '0.0.0')
+ string(name: 'BASE_REF', description: 'GitHub Base Ref (tag or
branch)')
+ string(name: 'RELEASE_CANDIDATE_VERSION', description: 'Release
Candidate Version', defaultValue: '')
+ string(name: 'PIPELINE_PATH', description: 'Path to run the pipeline')
+ string(name: 'UPLOAD_ASSET_URL', description: 'Upload Asset Url')
}
environment {
@@ -51,6 +52,8 @@ pipeline {
RELEASE_ARTIFACTS_DIR = "${WORKSPACE}/release-artifacts"
PNPM_FILTER_STRING = '-F chrome-extension-pack-kogito-kie-editors...
-F chrome-extension-serverless-workflow-editor...'
+
+ MAVEN_ARGS = "-Dmaven.repo.local=${WORKSPACE}/.maven"
}
stages {
@@ -113,7 +116,7 @@ pipeline {
steps {
dir('kie-tools') {
script {
-
buildUtils.setupPnpm("${pipelineVars.mavenSettingsReleaseConfigFileId}")
+ buildUtils.setupPnpm()
}
}
}
@@ -123,7 +126,7 @@ pipeline {
steps {
dir('kie-tools') {
script {
- buildUtils.pnpmBootstrap("${env.PNPM_FILTER_STRING}")
+ buildUtils.pnpmBootstrap(env.PNPM_FILTER_STRING,
env.MAVEN_ARGS)
}
}
}
@@ -133,7 +136,7 @@ pipeline {
steps {
dir('kie-tools') {
script {
- buildUtils.pnpmBuild("${env.PNPM_FILTER_STRING}")
+ buildUtils.pnpmBuild(env.PNPM_FILTER_STRING,
env.MAVEN_ARGS)
}
}
}
diff --git a/.ci/jenkins/release-jobs/Jenkinsfile.cors-proxy
b/.ci/jenkins/release-jobs/Jenkinsfile.cors-proxy
index 804eed93579..27a55515363 100644
--- a/.ci/jenkins/release-jobs/Jenkinsfile.cors-proxy
+++ b/.ci/jenkins/release-jobs/Jenkinsfile.cors-proxy
@@ -29,7 +29,7 @@ pipeline {
parameters {
booleanParam(name: 'DRY_RUN', description: 'Dry run', defaultValue:
true)
string(name: 'RELEASE_VERSION', description: 'Release Version',
defaultValue: '0.0.0')
- string(name: 'BASE_REF', description: 'GitHub Base Ref (tag or
branch)', defaultValue: '10.1.x')
+ string(name: 'BASE_REF', description: 'GitHub Base Ref (tag or
branch)')
string(name: 'RELEASE_CANDIDATE_VERSION', description: 'Release
Candidate Version', defaultValue: '')
string(name: 'PIPELINE_PATH', description: 'Path to run the pipeline')
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]