Skip to content

Commit

Permalink
[FLINK-31923] Run nightly builds against multiple branches and Flink …
Browse files Browse the repository at this point in the history
…versions
  • Loading branch information
MartijnVisser committed Jun 15, 2023
1 parent 4f1cdfa commit ac6cf71
Showing 1 changed file with 21 additions and 2 deletions.
23 changes: 21 additions & 2 deletions .github/workflows/weekly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,27 @@ jobs:
if: github.repository_owner == 'apache'
strategy:
matrix:
flink: [1.16-SNAPSHOT, 1.17-SNAPSHOT, 1.18-SNAPSHOT]
flink_branches: [{
flink: 1.16-SNAPSHOT,
branch: main
}, {
flink: 1.17-SNAPSHOT,
branch: main
}, {
flink: 1.18-SNAPSHOT,
branch: main
}, {
flink: 1.16.2,
branch: v3.1
}, {
flink: 1.17.1,
branch: v3.1
}, {
flink: 1.18-SNAPSHOT,
branch: v3.1
}]
uses: apache/flink-connector-shared-utils/.github/workflows/ci.yml@ci_utils
with:
flink_version: ${{ matrix.flink }}
flink_version: ${{ matrix.flink_branches.flink }}
connector_branch: ${{ matrix.flink_branches.branch }}
run_dependency_convergence: false

0 comments on commit ac6cf71

Please sign in to comment.