mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-17 13:15:44 +02:00
Move check-maven-plugin-updates job to main CDT repo
This commit is contained in:
parent
fd909baa0a
commit
487dfc7163
1 changed files with 25 additions and 0 deletions
25
releng/check-maven-plugin-updates.Jenkinsfile
Normal file
25
releng/check-maven-plugin-updates.Jenkinsfile
Normal file
|
@ -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'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue