Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/flink_cdc_base.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 120
strategy:
max-parallel: 20
Comment thread
yuxiqian marked this conversation as resolved.
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Modifying the parallelism settings does not solve the resource limitations of the action runner under the Apache organization. Perhaps we can consider moving the action execution to the contributor's fork repository (which is completely free). This would avoid Apache's limitations, and this approach is currently used in both Spark and SeaTunnel. @yuxiqian @lvyanquan

fail-fast: false
matrix:
java-version: ${{ fromJSON(inputs.java-versions) }}
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/flink_cdc_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ jobs:
modules: "['mysql-source', 'postgres-source, oceanbase-source, tidb, vitess', 'oracle, sqlserver', 'db2, mongodb']"
pipeline_e2e:
strategy:
max-parallel: 2
fail-fast: false
matrix:
parallelism: [ 1, 4 ]
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/flink_cdc_ci_nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ jobs:
pipeline_e2e:
if: github.repository == 'apache/flink-cdc'
strategy:
max-parallel: 2
fail-fast: false
matrix:
parallelism: [ 1, 4 ]
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/label.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,11 @@
# https://github.com/actions/labeler

name: Labeler
on: [pull_request_target]
on:
pull_request:
branches:
- master
- release-*
Comment on lines +24 to +28
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This change make label action broken. Fix it in #4268


jobs:
label:
Expand Down