Skip to content

Commit

Permalink
Disable Dataflow run for java_test and python_test (#31934)
Browse files Browse the repository at this point in the history
  • Loading branch information
Abacn authored Jul 18, 2024
1 parent 24f22f2 commit 8f2c72e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/java_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -162,11 +162,10 @@ jobs:
fail-fast: false
matrix:
os: [[self-hosted, ubuntu-20.04, main], windows-latest]
# TODO(https://github.com/apache/beam/issues/31848) run on Dataflow after fixes credential on macOS/win GHA runner
if: |
needs.check_gcp_variables.outputs.gcp-variables-set == 'true' && (
(github.event_name == 'push' || github.event_name == 'schedule') ||
needs.check_gcp_variables.outputs.gcp-variables-set == 'true' &&
(github.event_name == 'workflow_dispatch' && github.event.inputs.runDataflow == 'true')
)
steps:
- name: Check out code
uses: actions/checkout@v4
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/python_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,8 @@ jobs:

python_wordcount_dataflow:
name: 'Python Wordcount Dataflow'
# TODO(https://github.com/apache/beam/issues/31848) run on Dataflow after fixes credential on macOS/win GHA runner
if: (github.event_name == 'workflow_dispatch' && github.event.inputs.runDataflow == 'true')
needs:
- build_python_sdk_source
runs-on: ${{ matrix.os }}
Expand Down

0 comments on commit 8f2c72e

Please sign in to comment.