You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by ha...@apache.org on 2022/01/11 01:22:12 UTC

[iotdb] branch FIX_JENK created (now 32c55df)

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

haonan pushed a change to branch FIX_JENK
in repository https://gitbox.apache.org/repos/asf/iotdb.git.


      at 32c55df  Fix JenkinsCI deploying error

This branch includes the following new commits:

     new 32c55df  Fix JenkinsCI deploying error

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


[iotdb] 01/01: Fix JenkinsCI deploying error

Posted by ha...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

haonan pushed a commit to branch FIX_JENK
in repository https://gitbox.apache.org/repos/asf/iotdb.git

commit 32c55df641174bed568d3443384bc419c84ffa81
Author: HTHou <hh...@outlook.com>
AuthorDate: Tue Jan 11 09:21:29 2022 +0800

    Fix JenkinsCI deploying error
---
 Jenkinsfile | 2 +-
 jenkins.pom | 1 +
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 3b5979f..0f5e6b6 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -141,7 +141,7 @@ pipeline {
             steps {
                 echo 'Deploying'
                 // Deploy the artifacts using the wagon-maven-plugin.
-                sh 'mvn -f jenkins.pom -X -P deploy-snapshots -P client-cpp wagon:upload -P get-jar-with-dependencies -P !library-udf'
+                sh 'mvn -f jenkins.pom -X -P deploy-snapshots -P client-cpp wagon:upload -P get-jar-with-dependencies'
             }
         }
 
diff --git a/jenkins.pom b/jenkins.pom
index 046af10..c630274 100644
--- a/jenkins.pom
+++ b/jenkins.pom
@@ -55,6 +55,7 @@
                         <configuration>
                             <fromDir>${project.basedir}/local-snapshots-dir</fromDir>
                             <includes>**</includes>
+                            <excludes>library-udf</excludes>
                             <serverId>apache.snapshots.https</serverId>
                             <url>${distMgmtSnapshotsUrl}</url>
                         </configuration>