periodic-strict #59
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
| # Owner(s): ["module: ci"] | |
| name: periodic-strict | |
| on: | |
| pull_request: | |
| paths: | |
| - .github/workflows/periodic-strict.yml | |
| schedule: | |
| - cron: 45 */4 * * * | |
| push: | |
| tags: | |
| - ciflow/periodic-strict/* | |
| branches: | |
| - release/* | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}-${{ github.event_name == 'workflow_dispatch' && github.run_id }}-${{ github.event_name == 'schedule' }} | |
| cancel-in-progress: true | |
| permissions: | |
| id-token: write | |
| contents: read | |
| actions: read | |
| jobs: | |
| get-label-type: | |
| name: get-label-type | |
| uses: pytorch/pytorch/.github/workflows/_runner-determinator.yml@main | |
| if: (github.event_name != 'schedule' || github.repository == 'pytorch/pytorch') && github.repository_owner == 'pytorch' | |
| with: | |
| triggering_actor: ${{ github.triggering_actor }} | |
| issue_owner: ${{ github.event.pull_request.user.login || github.event.issue.user.login }} | |
| curr_branch: ${{ github.head_ref || github.ref_name }} | |
| curr_ref_type: ${{ github.ref_type }} | |
| check_experiments: lf | |
| linux-jammy-cuda13_0-py3_10-gcc11-build: | |
| name: linux-jammy-cuda13.0-py3.10-gcc11 | |
| uses: ./.github/workflows/_linux-build.yml | |
| needs: get-label-type | |
| with: | |
| runner_prefix: "${{ needs.get-label-type.outputs.label-type }}" | |
| build-environment: linux-jammy-cuda13.0-py3.10-gcc11 | |
| docker-image-name: ci-image:pytorch-linux-jammy-cuda13.0-cudnn9-py3-gcc11 | |
| ci-docker-hash: ${{ needs.get-label-type.outputs.ci-docker-hash }} | |
| cuda-arch-list: '7.5 8.6 8.9' | |
| test-matrix: | | |
| { include: [ | |
| { config: "periodic", shard: 1, num_shards: 2, runner: "${{ needs.get-label-type.outputs.label-type }}linux.g6.4xlarge.experimental.nvidia.gpu" }, | |
| { config: "periodic", shard: 2, num_shards: 2, runner: "${{ needs.get-label-type.outputs.label-type }}linux.g6.4xlarge.experimental.nvidia.gpu" }, | |
| ]} | |
| python-version: "3.10" | |
| compiler: gcc11 | |
| cuda-version: "13.0" | |
| secrets: inherit | |
| linux-jammy-cuda13_0-py3_10-gcc11-test: | |
| name: linux-jammy-cuda13.0-py3.10-gcc11 | |
| uses: ./.github/workflows/_linux-test.yml | |
| needs: | |
| - linux-jammy-cuda13_0-py3_10-gcc11-build | |
| - get-label-type | |
| with: | |
| build-environment: ${{ needs.linux-jammy-cuda13_0-py3_10-gcc11-build.outputs.build-environment }} | |
| docker-image: ${{ needs.linux-jammy-cuda13_0-py3_10-gcc11-build.outputs.docker-image }} | |
| test-matrix: ${{ needs.linux-jammy-cuda13_0-py3_10-gcc11-build.outputs.test-matrix }} | |
| # These custom run_test.py targets cannot be filtered cleanly by -m periodic: | |
| # doctests and autoload bypass pytest; AOT builds extensions before pytest; | |
| # CI sanity expects its unmarked test to fail. | |
| tests-to-exclude: >- | |
| doctests | |
| test_cpp_extensions_aot_ninja | |
| test_cpp_extensions_aot_no_ninja | |
| test_autoload_enable | |
| test_autoload_disable | |
| test_ci_sanity_check_fail | |
| python-version: "3.10" | |
| compiler: gcc11 | |
| cuda-version: "13.0" | |
| secrets: inherit |