-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: Migrate miscellaneous SDK tests to GHA Workflow (#11032)
* test: Migrate SDK isort tests to GHA Signed-off-by: ddalvi <[email protected]> * test: Migrate SDK docformatter tests to GHA Signed-off-by: ddalvi <[email protected]> * test: Migrate SDK Component YAML tests to GHA Signed-off-by: ddalvi <[email protected]> --------- Signed-off-by: ddalvi <[email protected]>
- Loading branch information
Showing
3 changed files
with
108 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
name: KFP Component YAML Test | ||
|
||
on: | ||
push: | ||
branches: [master] | ||
|
||
pull_request: | ||
paths: | ||
- 'components/**/*.yaml' | ||
- 'test/presubmit-component-yaml.sh' | ||
- 'sdk/python/**' | ||
- 'api/v2alpha1/**' | ||
- '.github/workflows/sdk-component-yaml.yml' | ||
|
||
jobs: | ||
test-component-yaml-kfp: | ||
runs-on: ubuntu-24.04 | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: 3.8 | ||
|
||
- name: apt-get update | ||
run: sudo apt-get update | ||
|
||
- name: Install protobuf-compiler | ||
run: sudo apt-get install protobuf-compiler -y | ||
|
||
- name: Install setuptools | ||
run: | | ||
pip3 install setuptools | ||
pip3 freeze | ||
- name: Install Wheel | ||
run: pip3 install wheel==0.42.0 | ||
|
||
- name: Install protobuf | ||
run: pip3 install protobuf==4.25.3 | ||
|
||
- name: Generate API proto files | ||
working-directory: ./api | ||
run: make clean python | ||
|
||
- name: Install kfp-pipeline-spec from source | ||
run: | | ||
python3 -m pip install api/v2alpha1/python | ||
- name: Install requirements | ||
run: pip install -r ./test/sdk-execution-tests/requirements.txt | ||
|
||
- name: Run component YAML tests | ||
run: ./test/presubmit-component-yaml.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: KFP SDK Docformatter Test | ||
|
||
on: | ||
push: | ||
branches: [master] | ||
|
||
pull_request: | ||
paths: | ||
- 'sdk/python/**' | ||
- 'test/presubmit-docformatter-sdk.sh' | ||
- '.github/workflows/sdk-docformatter.yml' | ||
|
||
jobs: | ||
test-docformatter-kfp-sdk: | ||
runs-on: ubuntu-24.04 | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: 3.8 | ||
|
||
- name: Run docformatter tests | ||
run: ./test/presubmit-docformatter-sdk.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: KFP SDK Isort Test | ||
|
||
on: | ||
push: | ||
branches: [master] | ||
|
||
pull_request: | ||
paths: | ||
- 'sdk/python/**' | ||
- 'test/presubmit-isort-sdk.sh' | ||
- '.github/workflows/sdk-isort.yml' | ||
|
||
jobs: | ||
test-isort-kfp-sdk: | ||
runs-on: ubuntu-24.04 | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: 3.8 | ||
|
||
- name: Run isort tests | ||
run: ./test/presubmit-isort-sdk.sh |