fix Jenkinsfile

Signed-off-by: Olivier Lamy <olamy@apache.org>
This commit is contained in:
Olivier Lamy 2022-09-05 17:08:10 +10:00
parent 19d50faaaf
commit 60d80f6f9f
1 changed files with 28 additions and 26 deletions

54
Jenkinsfile vendored
View File

@ -47,35 +47,37 @@ pipeline {
steps { steps {
timeout(120) { timeout(120) {
withEnv(["JAVA_HOME=${ tool "$buildJdk" }", withEnv(["JAVA_HOME=${ tool "$buildJdk" }",
"PATH+MAVEN=${ tool "$buildJdk" }/bin:${tool "buildMvn"}/bin", "PATH+MAVEN=${ tool "$buildJdk" }/bin:${tool "buildMvn"}/bin",
"MAVEN_OPTS=-Xms2g -Xmx4g -Djava.awt.headless=true"]) { "MAVEN_OPTS=-Xms2g -Xmx4g -Djava.awt.headless=true"]) {
configFileProvider( configFileProvider(
[configFile(fileId: 'archiva-uid-jenkins', variable: 'GLOBAL_MVN_SETTINGS')]) { [configFile(fileId: 'archiva-uid-jenkins', variable: 'GLOBAL_MVN_SETTINGS')]) {
// Needs a lot of time to reload the repository files, try without cleanup // Needs a lot of time to reload the repository files, try without cleanup
// Not sure, but maybe // Not sure, but maybe
// sh "rm -rf .repository" // sh "rm -rf .repository"
sh "chmod 755 ./src/ci/scripts/prepareWorkspace.sh" sh "chmod 755 ./src/ci/scripts/prepareWorkspace.sh"
sh "./src/ci/scripts/prepareWorkspace.sh -d .repository" sh "./src/ci/scripts/prepareWorkspace.sh -d .repository"
// Run test phase / ignore test failures // Run test phase / ignore test failures
// -B: Batch mode // -B: Batch mode
// -U: Force snapshot update // -U: Force snapshot update
// -e: Produce execution error messages // -e: Produce execution error messages
// -fae: Fail at the end // -fae: Fail at the end
// -Dmaven.compiler.fork=false: Do not compile in a separate forked process // -Dmaven.compiler.fork=false: Do not compile in a separate forked process
// -Dmaven.test.failure.ignore=true: Do not stop, if some tests fail // -Dmaven.test.failure.ignore=true: Do not stop, if some tests fail
// -Pci-build: Profile for CI-Server // -Pci-build: Profile for CI-Server
script { script {
if (env.BRANCH_NAME == 'master' || env.BRANCH_NAME == 'archiva-2.x') { if (env.BRANCH_NAME == 'master' || env.BRANCH_NAME == 'archiva-2.x') {
sh "mvn clean deploy -B -U -e -fae -T2 -Pci-build -DretryFailedDeploymentCount=5 -s $GLOBAL_MVN_SETTINGS -Dmaven.repo.local=.repository" sh "mvn clean deploy -B -U -e -fae -T2 -Pci-build -DretryFailedDeploymentCount=5 -s $GLOBAL_MVN_SETTINGS -Dmaven.repo.local=.repository"
} else { } else {
sh "mvn clean install -B -U -e -fae -T2 -Pci-build -s $GLOBAL_MVN_SETTINGS -Dmaven.repo.local=.repository" sh "mvn clean install -B -U -e -fae -T2 -Pci-build -s $GLOBAL_MVN_SETTINGS -Dmaven.repo.local=.repository"
}
} }
}
}
}
}
} }
} }
post { post {
@ -132,4 +134,4 @@ def notifyBuild(String buildStatus) {
) )
} }
// vim: et:ts=4:sw=4:ft=groovy // vim: et:ts=4:sw=4:ft=groovy