Skip to content

Commit 3161292

Browse files
authored
Re-enable "PostCommit XVR GoUsingJava Dataflow" in cron (#36909)
* Test docker config to fix workflow. * enable buildx and load in python docker. * Another attempt by setting buildx project property. * Another attempt * Re-enable workflow and sickbay some failed tests for now. * Add release trigger
1 parent dde8937 commit 3161292

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"comment": "Modify this file in a trivial way to cause this test suite to run",
3-
"modification": 1
4-
}
3+
"modification": 2
4+
}

.github/workflows/beam_PostCommit_XVR_GoUsingJava_Dataflow.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,13 @@
1616
# TODO(https://github.com/apache/beam/issues/32492): re-enable the suite
1717
# on cron and add release/trigger_all_tests.json to trigger path once fixed.
1818

19-
name: PostCommit XVR GoUsingJava Dataflow (disabled)
19+
name: PostCommit XVR GoUsingJava Dataflow
2020

2121
on:
22+
schedule:
23+
- cron: '45 5/6 * * *'
2224
pull_request_target:
23-
paths: ['.github/trigger_files/beam_PostCommit_XVR_GoUsingJava_Dataflow.json']
25+
paths: ['.github/trigger_files/beam_PostCommit_XVR_GoUsingJava_Dataflow.json', 'release/trigger_all_tests.json']
2426
workflow_dispatch:
2527

2628
#Setting explicit permissions for the action to avoid the default permissions which are `write-all` in case of pull_request_target event
@@ -83,6 +85,8 @@ jobs:
8385
uses: ./.github/actions/gradle-command-self-hosted-action
8486
with:
8587
gradle-command: :runners:google-cloud-dataflow-java:validatesCrossLanguageRunnerGoUsingJava
88+
arguments: |
89+
-PuseDockerBuildx
8690
- name: Archive JUnit Test Results
8791
uses: actions/upload-artifact@v4
8892
if: ${{ !success() }}

sdks/go/test/integration/integration.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -301,6 +301,9 @@ var dataflowFilters = []string{
301301
// There is no infrastructure for running KafkaIO tests with Dataflow.
302302
"TestKafkaIO.*",
303303
"TestSpannerIO.*",
304+
// TODO(36918) These tests are currently failing in Dataflow Runner
305+
"TestBigQueryIO.*",
306+
"TestBigtableIO.*",
304307
// Dataflow doesn't support any test that requires loopback.
305308
// Eg. For FileIO examples.
306309
".*Loopback.*",

0 commit comments

Comments
 (0)