You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by ch...@apache.org on 2022/12/13 09:27:28 UTC

[flink-connector-jdbc] branch main updated (9559acf -> 092f502)

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

chesnay pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/flink-connector-jdbc.git


    from 9559acf  [FLINK-30060][Connector/JDBC] Move existing JDBC connector code from Flink repo to dedicated JDBC repo
     new ba0f184   [FLINK-30353][ci] Limit concurrency
     new ce55ce0  [hotfix][ci] Only run weekly in Apache repo
     new 092f502  [hotfix][ci] Remove repo name from workflow files

The 3 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.


Summary of changes:
 .github/workflows/ci.yml      | 6 +++---
 .github/workflows/push_pr.yml | 7 +++++--
 .github/workflows/weekly.yml  | 5 +++--
 3 files changed, 11 insertions(+), 7 deletions(-)


[flink-connector-jdbc] 03/03: [hotfix][ci] Remove repo name from workflow files

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

chesnay pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/flink-connector-jdbc.git

commit 092f502b2962984af47d8428eab86687db229b81
Author: Chesnay Schepler <ch...@apache.org>
AuthorDate: Tue Dec 13 10:27:19 2022 +0100

    [hotfix][ci] Remove repo name from workflow files
---
 .github/workflows/ci.yml      | 6 +++---
 .github/workflows/push_pr.yml | 4 ++--
 .github/workflows/weekly.yml  | 4 ++--
 3 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index b41eedc..91b9091 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -79,9 +79,9 @@ jobs:
         if: steps.cache-flink.outputs.cache-hit != 'true'
         run: wget -q -c ${{ inputs.flink_url }} -O - | tar -xz
 
-      - name: Compile and test flink-connector-jdbc
+      - name: Compile and test
         timeout-minutes: 30
-        run: |
+        run: |          
           set -o pipefail
 
           mvn clean deploy ${MVN_COMMON_OPTIONS} \
@@ -98,4 +98,4 @@ jobs:
           mvn ${MVN_COMMON_OPTIONS} exec:java@check-license -N \
             -Dexec.args="${{ env.MVN_BUILD_OUTPUT_FILE }} $(pwd) ${{ env.MVN_VALIDATION_DIR }}" \
             ${{ env.MVN_CONNECTION_OPTIONS }} \
-            -Dlog4j.configurationFile=file://$(pwd)/tools/ci/log4j.properties
\ No newline at end of file
+            -Dlog4j.configurationFile=file://$(pwd)/tools/ci/log4j.properties
diff --git a/.github/workflows/push_pr.yml b/.github/workflows/push_pr.yml
index b066b7c..a2a7c33 100644
--- a/.github/workflows/push_pr.yml
+++ b/.github/workflows/push_pr.yml
@@ -16,7 +16,7 @@
 # limitations under the License.
 ################################################################################
 
-name: Build flink-connector-jdbc
+name: CI
 on: [push, pull_request]
 concurrency:
   group: ${{ github.workflow }}-${{ github.ref }}
@@ -27,4 +27,4 @@ jobs:
     with:
       flink_version: 1.16.0
       flink_url: https://dist.apache.org/repos/dist/release/flink/flink-1.16.0/flink-1.16.0-bin-scala_2.12.tgz
-      cache_flink_binary: true
\ No newline at end of file
+      cache_flink_binary: true
diff --git a/.github/workflows/weekly.yml b/.github/workflows/weekly.yml
index 1372549..63f566f 100644
--- a/.github/workflows/weekly.yml
+++ b/.github/workflows/weekly.yml
@@ -16,7 +16,7 @@
 # limitations under the License.
 ################################################################################
 
-name: Build flink-connector-jdbc
+name: Nightly
 on:
   schedule:
     - cron: "0 0 * * 0"
@@ -30,4 +30,4 @@ jobs:
     with:
       flink_version: ${{ matrix.flink }}
       flink_url: https://s3.amazonaws.com/flink-nightly/flink-${{ matrix.flink }}-bin-scala_2.12.tgz
-      cache_flink_binary: false
\ No newline at end of file
+      cache_flink_binary: false


[flink-connector-jdbc] 02/03: [hotfix][ci] Only run weekly in Apache repo

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

chesnay pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/flink-connector-jdbc.git

commit ce55ce06040e52821e7e6bb1692f63ea5cb4a118
Author: Chesnay Schepler <ch...@apache.org>
AuthorDate: Tue Dec 13 10:27:11 2022 +0100

    [hotfix][ci] Only run weekly in Apache repo
---
 .github/workflows/weekly.yml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.github/workflows/weekly.yml b/.github/workflows/weekly.yml
index 899b92c..1372549 100644
--- a/.github/workflows/weekly.yml
+++ b/.github/workflows/weekly.yml
@@ -22,6 +22,7 @@ on:
     - cron: "0 0 * * 0"
 jobs:
   compile_and_test:
+    if: github.repository_owner == 'apache'
     strategy:
       matrix:
         flink: [1.16-SNAPSHOT, 1.17-SNAPSHOT]


[flink-connector-jdbc] 01/03: [FLINK-30353][ci] Limit concurrency

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

chesnay pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/flink-connector-jdbc.git

commit ba0f18470245a0c397ac5b96dfcbc4c9e7bc483a
Author: Chesnay Schepler <ch...@apache.org>
AuthorDate: Tue Dec 13 10:27:02 2022 +0100

     [FLINK-30353][ci] Limit concurrency
---
 .github/workflows/push_pr.yml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/.github/workflows/push_pr.yml b/.github/workflows/push_pr.yml
index e679db6..b066b7c 100644
--- a/.github/workflows/push_pr.yml
+++ b/.github/workflows/push_pr.yml
@@ -18,6 +18,9 @@
 
 name: Build flink-connector-jdbc
 on: [push, pull_request]
+concurrency:
+  group: ${{ github.workflow }}-${{ github.ref }}
+  cancel-in-progress: true
 jobs:
   compile_and_test:
     uses: ./.github/workflows/ci.yml