This is an automated email from the ASF dual-hosted git repository. yamer pushed a commit to branch 10.0.x-reproducible in repository https://gitbox.apache.org/repos/asf/incubator-kie-kogito-apps.git
commit 7ef8229dc70137a8a3b87517d923b6b1f854429a Author: Yeser Amer <[email protected]> AuthorDate: Fri Oct 4 12:55:42 2024 +0200 WIP --- .ci/jenkins/Jenkinsfile.deploy | 4 +++- pom.xml | 12 +++++++++++- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/.ci/jenkins/Jenkinsfile.deploy b/.ci/jenkins/Jenkinsfile.deploy index 58e0c532b..51afe0271 100644 --- a/.ci/jenkins/Jenkinsfile.deploy +++ b/.ci/jenkins/Jenkinsfile.deploy @@ -119,7 +119,9 @@ pipeline { if (isRelease()) { releaseUtils.gpgImportKeyFromStringWithoutPassword(getReleaseGpgSignKeyCredsId()) - mavenCommand.withProfiles(['apache-release']) + mavenCommand + .withProfiles(['apache-release']) + .withProperty('only.reproducible') } configFileProvider([configFile(fileId: env.MAVEN_SETTINGS_CONFIG_FILE_ID, variable: 'MAVEN_SETTINGS_FILE')]) { diff --git a/pom.xml b/pom.xml index ea403816f..06c6451e4 100644 --- a/pom.xml +++ b/pom.xml @@ -130,10 +130,20 @@ <module>explainability</module> <module>trusty</module> <module>jitexecutor</module> - <module>apps-integration-tests</module> </modules> <profiles> + <profile> + <id>allSubmodules</id> + <activation> + <property> + <name>!only.reproducible</name> + </property> + </activation> + <modules> + <module>apps-integration-tests</module> + </modules> + </profile> <profile> <id>optaplanner-downstream</id> <activation> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
