You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by si...@apache.org on 2020/10/21 16:33:04 UTC

[pulsar] branch branch-2.6 updated: Fix branch-2.6 build issue (#8330)

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

sijie pushed a commit to branch branch-2.6
in repository https://gitbox.apache.org/repos/asf/pulsar.git


The following commit(s) were added to refs/heads/branch-2.6 by this push:
     new 28787e2  Fix branch-2.6 build issue (#8330)
28787e2 is described below

commit 28787e26c39b6562d87bc0f7ae9b6cb1c9fda2d9
Author: lipenghui <pe...@apache.org>
AuthorDate: Thu Oct 22 00:32:41 2020 +0800

    Fix branch-2.6 build issue (#8330)
---
 .github/workflows/ci-pulsar-build.yml | 70 +++++++++++++++++++++++++++++++++++
 pom.xml                               |  2 +-
 2 files changed, 71 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/ci-pulsar-build.yml b/.github/workflows/ci-pulsar-build.yml
new file mode 100644
index 0000000..75ab05a
--- /dev/null
+++ b/.github/workflows/ci-pulsar-build.yml
@@ -0,0 +1,70 @@
+#
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+#
+
+name: CI - Pulsar - Build - 2.6
+on:
+  pull_request:
+    branches:
+      - branch-2.6
+
+jobs:
+
+  unit-tests:
+    name:
+    runs-on: ubuntu-latest
+    timeout-minutes: 120
+
+    steps:
+      - name: checkout
+        uses: actions/checkout@v2
+        with:
+          fetch-depth: 0
+          ref: ${{ github.event.pull_request.head.sha }}
+
+      - name: Set up JDK 1.8
+        uses: actions/setup-java@v1
+        if: steps.docs.outputs.changed_only == 'no'
+        with:
+          java-version: 1.8
+
+      - name: Set up Maven
+        uses: apache/pulsar-test-infra/setup-maven@master
+        if: steps.docs.outputs.changed_only == 'no'
+        with:
+          maven-version: 3.6.1
+
+      - name: run build
+        if: steps.docs.outputs.changed_only == 'no'
+        run: mvn clean install -DskipTests
+
+      - name: package surefire artifacts
+        if: failure()
+        run: |
+          df -h
+          free -h
+          rm -rf artifacts
+          mkdir artifacts
+          find . -type d -name "*surefire*" -exec cp --parents -R {} artifacts/ \;
+          zip -r artifacts.zip artifacts
+      - uses: actions/upload-artifact@master
+        name: upload surefire-artifacts
+        if: failure()
+        with:
+          name: surefire-artifacts
+          path: artifacts.zip
diff --git a/pom.xml b/pom.xml
index ddb58ca..f385d4c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1553,7 +1553,7 @@ flexible messaging model and an intuitive client API.</description>
         <plugin>
           <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-shade-plugin</artifactId>
-          <version>3.1.0</version>
+          <version>3.2.4</version>
         </plugin>
         <plugin>
           <artifactId>maven-enforcer-plugin</artifactId>