We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ab0f2f commit 74f321cCopy full SHA for 74f321c
releng/run-dash-licenses.Jenkinsfile
@@ -0,0 +1,32 @@
1
+pipeline {
2
+ agent {
3
+ kubernetes {
4
+ yamlFile 'jenkins/pod-templates/cdt-full-pod-plus-eclipse-install.yaml'
5
+ }
6
7
+ options {
8
+ timestamps()
9
+ disableConcurrentBuilds()
10
11
+ stages {
12
+ stage('Run Dash Licenses Check') {
13
+ steps {
14
+ container('cdt') {
15
+ timeout(activity: true, time: 20) {
16
+ withEnv(['MAVEN_OPTS=-XX:MaxRAMPercentage=60.0']) {
17
+ sh 'MVN="/usr/share/maven/bin/mvn -Dmaven.repo.local=/home/jenkins/.m2/repository \
18
+ --settings /home/jenkins/.m2/settings.xml" ./releng/scripts/run_dash_licenses.sh'
19
20
21
22
23
24
25
+ post {
26
+ always {
27
28
+ archiveArtifacts allowEmptyArchive: true, artifacts: '*.log'
29
30
31
32
+}
0 commit comments