You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by lz...@apache.org on 2022/08/16 07:01:01 UTC

[flink-table-store] branch master updated: [hotfix] Fix github workflow build-different-versions.yaml

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

lzljs3620320 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink-table-store.git


The following commit(s) were added to refs/heads/master by this push:
     new 90cb210d [hotfix] Fix github workflow build-different-versions.yaml
90cb210d is described below

commit 90cb210dac93328f610f926b8afffcb8d878fc0b
Author: tsreaper <ts...@gmail.com>
AuthorDate: Tue Aug 16 15:00:28 2022 +0800

    [hotfix] Fix github workflow build-different-versions.yaml
    
    This closes #267
---
 .github/workflows/build-different-versions.yml | 12 +++---------
 flink-table-store-shade/pom.xml                |  4 ++--
 pom.xml                                        |  2 --
 3 files changed, 5 insertions(+), 13 deletions(-)

diff --git a/.github/workflows/build-different-versions.yml b/.github/workflows/build-different-versions.yml
index fb5ecb95..dea1f18b 100644
--- a/.github/workflows/build-different-versions.yml
+++ b/.github/workflows/build-different-versions.yml
@@ -13,7 +13,7 @@ jobs:
         uses: actions/setup-java@v1
         with:
           java-version: 1.8
-      - name: Build Flink 1.15 & Hive 2.3
+      - name: Build Flink 1.15
         run: |
           mvn clean install -Dmaven.test.skip=true
       - name: Build Flink 1.15 & Hive 2.2
@@ -22,12 +22,6 @@ jobs:
       - name: Build Flink 1.15 & Hive 2.1
         run: |
           mvn clean install -Dmaven.test.skip=true -Phive-2.1 -f flink-table-store-hive
-      - name: Build Flink 1.14 & Hive 2.3
+      - name: Build Flink 1.14
         run: |
-        mvn clean install -Dmaven.test.skip=true -Pflink-1.14
-      - name: Build Flink 1.14 & Hive 2.2
-        run: |
-          mvn clean install -Dmaven.test.skip=true -Pflink-1.14 -Phive-2.2 -f flink-table-store-hive
-      - name: Build Flink 1.14 & Hive 2.1
-        run: |
-          mvn clean install -Dmaven.test.skip=true -Pflink-1.14 -Phive-2.1 -f flink-table-store-hive
+          mvn clean install -Dmaven.test.skip=true -Pflink-1.14
diff --git a/flink-table-store-shade/pom.xml b/flink-table-store-shade/pom.xml
index 2d36d9d0..8ca1a512 100644
--- a/flink-table-store-shade/pom.xml
+++ b/flink-table-store-shade/pom.xml
@@ -175,7 +175,7 @@ under the License.
 
         <dependency>
             <groupId>org.apache.flink</groupId>
-            <artifactId>${flink.runtime}</artifactId>
+            <artifactId>flink-runtime</artifactId>
             <version>${flink.version}</version>
             <exclusions>
                 <exclusion>
@@ -235,7 +235,7 @@ under the License.
                                 <includes combine.children="append">
                                     <!-- Flink -->
                                     <include>org.apache.flink:flink-core</include>
-                                    <include>org.apache.flink:${flink.runtime}</include>
+                                    <include>org.apache.flink:flink-runtime</include>
                                     <include>org.apache.flink:${flink.streaming.java}</include>
                                     <include>org.apache.flink:flink-connector-files</include>
                                     <include>org.apache.flink:flink-hadoop-fs</include>
diff --git a/pom.xml b/pom.xml
index 16c4a3e8..ffdccb12 100644
--- a/pom.xml
+++ b/pom.xml
@@ -114,7 +114,6 @@ under the License.
         <test.randomization.seed/>
         <test.unit.pattern>**/*Test.*</test.unit.pattern>
 
-        <flink.runtime>flink-runtime</flink.runtime>
         <flink.table.api.java.bridge>flink-table-api-java-bridge</flink.table.api.java.bridge>
         <flink.table.runtime>flink-table-runtime</flink.table.runtime>
         <flink.streaming.java>flink-streaming-java</flink.streaming.java>
@@ -292,7 +291,6 @@ under the License.
             <id>flink-1.14</id>
             <properties>
                 <flink.version>1.14.5</flink.version>
-                <flink.runtime>flink-runtime_${scala.binary.version}</flink.runtime>
                 <flink.table.api.java.bridge>flink-table-api-java-bridge_${scala.binary.version}</flink.table.api.java.bridge>
                 <flink.table.runtime>flink-table-runtime_${scala.binary.version}</flink.table.runtime>
                 <flink.streaming.java>flink-streaming-java_${scala.binary.version}</flink.streaming.java>