Dsl test #212
This file contains hidden or 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
| name: KFP SDK Upgrade Test | |
| on: | |
| push: | |
| branches: [master] | |
| pull_request: | |
| paths: | |
| - 'sdk/python/**' | |
| - 'test/presubmit-test-sdk-upgrade.sh' | |
| - '.github/workflows/sdk-upgrade.yml' | |
| - '!**/*.md' | |
| - '!**/OWNERS' | |
| jobs: | |
| test-upgrade-kfp-sdk: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v5 | |
| - name: Set up Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: 3.9 | |
| - name: Install protobuf dependencies & kfp-pipeline-spec | |
| id: install-protobuf-deps | |
| uses: ./.github/actions/protobuf | |
| with: | |
| generate_golang_proto: "false" | |
| - name: Run SDK upgrade tests | |
| run: ./test/presubmit-test-sdk-upgrade.sh |