From 487dfc7163fe8d8a617d70804fac506796abd9dd Mon Sep 17 00:00:00 2001 From: Jonah Graham Date: Sat, 1 Oct 2022 20:28:54 -0400 Subject: [PATCH] Move check-maven-plugin-updates job to main CDT repo --- releng/check-maven-plugin-updates.Jenkinsfile | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 releng/check-maven-plugin-updates.Jenkinsfile diff --git a/releng/check-maven-plugin-updates.Jenkinsfile b/releng/check-maven-plugin-updates.Jenkinsfile new file mode 100644 index 00000000000..0ee49ccb44e --- /dev/null +++ b/releng/check-maven-plugin-updates.Jenkinsfile @@ -0,0 +1,25 @@ +pipeline { + agent { + kubernetes { + yamlFile 'jenkins/pod-templates/cdt-full-pod-standard.yaml' + } + } + options { + timestamps() + disableConcurrentBuilds() + } + stages { + stage('Run build') { + steps { + container('cdt') { + timeout(activity: true, time: 20) { + withEnv(['MAVEN_OPTS=-XX:MaxRAMPercentage=60.0']) { + sh 'MVN="/usr/share/maven/bin/mvn -Dmaven.repo.local=/home/jenkins/.m2/repository \ + --settings /home/jenkins/.m2/settings.xml" ./releng/scripts/check_mvn_plugin_versions.sh' + } + } + } + } + } + } +}