Skip to content
Closed
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,89 @@
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.

# Test for Python Precommit Runners Portability Flink


name: Python Precommit Runners Portability Flink
on:
schedule:
- cron: '0 */6 * * *'
push:
branches: ['master', 'release-*']
tags: ['v*']
paths: [ 'sdks/python/apache_beam/runners/portability/flink_runner.py',
'sdks/python/apache_beam/runners/portability/flink_runner_test.py',
'sdks/python/apache_beam/runners/portability/flink_uber_jar_job_server.py',
'sdks/python/apache_beam/runners/portability/flink_uber_jar_job_server_test.py' ]
pull_request_target:
branches: ['master', 'release-*']
tags: ['v*']
paths: ['sdks/python/apache_beam/runners/portability/flink_runner.py',
'sdks/python/apache_beam/runners/portability/flink_runner_test.py',
'sdks/python/apache_beam/runners/portability/flink_uber_jar_job_server.py',
'sdks/python/apache_beam/runners/portability/flink_uber_jar_job_server_test.py']
permissions: read-all

env:
tests: "'apache_beam/runners/portability/flink_runner.py \
apache_beam/runners/portability/flink_runner_test.py \
apache_beam/runners/portability/flink_uber_jar_job_server.py \
apache_beam/runners/portability/flink_uber_jar_job_server_test.py'"

jobs:
set-properties:
runs-on: [self-hosted, ubuntu-20.04]
outputs:
properties: ${{ steps.test-properties.outputs.properties }}
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}
persist-credentials: false
- id: test-properties
uses: ./.github/actions/setup-default-test-properties

runners_portability_flink:
needs: set-properties
name: Python Runners Portability Flink
runs-on: self-hosted
strategy:
fail-fast: false
matrix:
version: ${{fromJson(needs.set-properties.outputs.properties).PythonTestProperties.ALL_SUPPORTED_VERSIONS}}
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}
persist-credentials: false
- name: Set python version and tox env
run: |
echo "PYTHON_VERSION=$(echo ${{ matrix.version }} | sed -e 's/\.//g')" >> $GITHUB_ENV
- name: Setup environment
uses: ./.github/actions/setup-self-hosted-action
- name: Run :sdks:python:test-suites:tox:${{ env.PYTHON_VERSION }}:testPy${{ env.PYTHON_VERSION }}Cloud
uses: ./.github/actions/gradle-command-self-hosted-action
with:
gradle-command: :sdks:python:test-suites:tox:py${{ env.PYTHON_VERSION }}:testPy${{ env.PYTHON_VERSION }}Cloud
arguments: "-Pposargs=${{env.tests}}"
- name: Run :sdks:python:test-suites:tox:y${{ env.PYTHON_VERSION }}:testPy${{ env.PYTHON_VERSION }}Cython
uses: ./.github/actions/gradle-command-self-hosted-action
with:
gradle-command: :sdks:python:test-suites:tox:py${{ env.PYTHON_VERSION }}:testPy${{ env.PYTHON_VERSION }}Cython
arguments: "-Pposargs=${{env.tests}}"
2 changes: 1 addition & 1 deletion CI.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ Service Account shall have following permissions ([IAM roles](https://cloud.goog
### PreCommit Workflows
| Workflow | Description | Requires GCP Credentials |
|----------------------------------------------------------------------------------|-------------------------|---------------------------|
| [job-precommit-placeholder.yml](.github/workflows/job-precommit-placeholder.yml) | Description placeholder | Yes/No |
| [job-precommit-python-runners-portability-flink.yml](.github/workflows/job-precommit-python-runners-portability-flink.yml) | Run Python Precommit Runners Portability Flink | Yes/No |

### PostCommit Workflows
| Workflow | Description | Requires GCP Credentials |
Expand Down