Skip to content

Commit f4d718b

Browse files
feat(s3stream): test s3 wal in s3stream e2e (AutoMQ#1705)
Signed-off-by: SSpirits <admin@lv5.moe>
1 parent 8c33311 commit f4d718b

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/s3stream-e2e.yml

+7-1
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,14 @@ on:
44
types: [ opened, reopened, synchronize ]
55
push:
66
branches: [ "main" ]
7+
workflow_dispatch:
78

89
jobs:
910
test:
1011
runs-on: ubuntu-latest
12+
strategy:
13+
matrix:
14+
wal-type: [ "file", "s3" ]
1115
steps:
1216
- uses: actions/checkout@v4
1317
- uses: actions/setup-java@v4
@@ -36,11 +40,13 @@ jobs:
3640
- name: Run tests
3741
working-directory: ./s3stream-e2e
3842
run: mvn test -pl integration
43+
env:
44+
WAL_TYPE: ${{ matrix.wal-type }}
3945
- name: Publish Test Report
4046
uses: mikepenz/action-junit-report@v3
4147
if: success() || failure() # always run even if the previous step fails
4248
with:
4349
report_paths: '**/surefire-reports/TEST-*.xml'
4450
annotate_only: true
4551
include_passed: true
46-
detailed_summary: true
52+
detailed_summary: true

0 commit comments

Comments
 (0)