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
25 changes: 25 additions & 0 deletions .github/workflows/daily-end-to-end-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Daily End to End Test

on:
schedule:
- cron: 0 1 * * *
workflow_dispatch:
jobs:
sync:
name: Run End to End test for pulsar
runs-on: ubuntu-latest
strategy:
matrix:
branch:
- develop
- relesae-sn-1.14
- release-sn-1.15
steps:
- name: Checkout the code
uses: actions/checkout@v2
with:
ref: ${{ matrix.branch }}
- name: Run e2e Test
run: |
./mvnw clean install -DskipTests
./mvnw -pl 'flink-end-to-end-tests/flink-end-to-end-tests-pulsar' test
20 changes: 20 additions & 0 deletions .github/workflows/run-pr-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Run Test for Pull Request

on:
pull_request:
branches: [ develop, release-sn-** ]

jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout the code
uses: actions/checkout@v2
with:
ref: ${{ github.event.pull_request.head.sha }}

- name: Run Unit Test and Install
run: |
./mvnw -pl 'flink-connectors/flink-connector-pulsar,flink-connectors/flink-sql-connector-pulsar' \
clean install