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:49:12 UTC

[flink-connector-hbase] branch main updated (d74e518 -> a236254)

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-hbase.git


    from d74e518  [FLINK-30062][Connectors/HBase] Bundle the exact same dependencies as 1.16.0
     new dc85476   [FLINK-30353][ci] Limit concurrency
     new 8996bed  [hotfix][ci] Only run weekly in Apache repo
     new a236254  [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      | 4 ++--
 .github/workflows/push_pr.yml | 7 +++++--
 .github/workflows/weekly.yml  | 5 +++--
 3 files changed, 10 insertions(+), 6 deletions(-)


[flink-connector-hbase] 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-hbase.git

commit 8996bed455a517b7f69522ab0f9fc8c9f6b800a2
Author: Chesnay Schepler <ch...@apache.org>
AuthorDate: Tue Dec 13 10:48:38 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 568bc82..ac27633 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-hbase] 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-hbase.git

commit a2362544c768ba1c4e7dcc237582f40a71484a89
Author: Chesnay Schepler <ch...@apache.org>
AuthorDate: Tue Dec 13 10:48:56 2022 +0100

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

diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index a7d65c0..0a812c8 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -79,7 +79,7 @@ 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-hbase
+      - name: Compile and test
         timeout-minutes: 30
         run: |
           set -o pipefail
@@ -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 e4688c1..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-hbase
+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 ac27633..63f566f 100644
--- a/.github/workflows/weekly.yml
+++ b/.github/workflows/weekly.yml
@@ -16,7 +16,7 @@
 # limitations under the License.
 ################################################################################
 
-name: Build flink-connector-hbase
+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-hbase] 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-hbase.git

commit dc8547641c3f4d20f87a231fa71d49171f2de302
Author: Chesnay Schepler <ch...@apache.org>
AuthorDate: Tue Dec 13 10:48:30 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 2aa22cc..e4688c1 100644
--- a/.github/workflows/push_pr.yml
+++ b/.github/workflows/push_pr.yml
@@ -18,6 +18,9 @@
 
 name: Build flink-connector-hbase
 on: [push, pull_request]
+concurrency:
+  group: ${{ github.workflow }}-${{ github.ref }}
+  cancel-in-progress: true
 jobs:
   compile_and_test:
     uses: ./.github/workflows/ci.yml