This is an automated email from the ASF dual-hosted git repository.

sruehl pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/plc4x.git


The following commit(s) were added to refs/heads/develop by this push:
     new 0af970c  plc4x: introduce update check stage to get a better overview 
of the dependency state
0af970c is described below

commit 0af970c718afcf10f889ed8d4a9703863821a8b6
Author: Sebastian Rühl <sru...@apache.org>
AuthorDate: Thu Apr 22 22:19:14 2021 +0200

    plc4x: introduce update check stage to get a better overview of the 
dependency state
---
 Jenkinsfile | 12 ++++++++++--
 1 file changed, 10 insertions(+), 2 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 1e895cc..3aa13b6 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -77,6 +77,14 @@ pipeline {
             }
         }
 
+        stage('Update check') {
+            steps {
+                echo 'checking for update'
+                sh 'mvn -P${JENKINS_PROFILE},skip-prerequisite-check 
versions:display-plugin-updates'
+                sh 'mvn -P${JENKINS_PROFILE},skip-prerequisite-check 
versions:display-dependency-updates'
+            }
+        }
+
         stage('Build') {
             when {
                 expression {
@@ -85,8 +93,8 @@ pipeline {
             }
             steps {
                 echo 'Building'
-                //sh 'mvn 
-P${JENKINS_PROFILE},skip-prerequisite-check,development,with-sandbox,with-c,with-cpp,with-boost,with-dotnet,with-python,with-proxies,with-logstash
 ${MVN_TEST_FAIL_IGNORE} ${MVN_LOCAL_REPO_OPT} clean install'
-                //sh 'mvn 
-P${JENKINS_PROFILE},skip-prerequisite-check,development,with-sandbox,with-logstash,with-go
 ${MVN_TEST_FAIL_IGNORE} ${MVN_LOCAL_REPO_OPT} clean install'
+                //sh 'mvn 
-P${JENKINS_PROFILE},skip-prerequisite-check,with-sandbox,with-c,with-cpp,with-boost,with-dotnet,with-python,with-proxies,with-logstash
 ${MVN_TEST_FAIL_IGNORE} ${MVN_LOCAL_REPO_OPT} clean install'
+                //sh 'mvn 
-P${JENKINS_PROFILE},skip-prerequisite-check,with-sandbox,with-logstash,with-go 
${MVN_TEST_FAIL_IGNORE} ${MVN_LOCAL_REPO_OPT} clean install'
                 sh 'mvn 
-P${JENKINS_PROFILE},skip-prerequisite-check,with-sandbox,with-logstash,with-go 
${MVN_TEST_FAIL_IGNORE} ${MVN_LOCAL_REPO_OPT} clean install'
             }
             post {

Reply via email to