trunk #739
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: trunk | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - release/* | |
| - landchecks/* | |
| tags: | |
| - ciflow/trunk/* | |
| workflow_dispatch: | |
| inputs: | |
| jobs-to-include: | |
| description: "Space-separated list of job display names to run (empty = all)" | |
| required: false | |
| default: "" | |
| type: string | |
| tests-to-include: | |
| description: "Space-separated tests to include (passed to test runner; empty = default)" | |
| required: false | |
| default: "" | |
| type: string | |
| schedule: | |
| - cron: 29 8 * * * # about 1:29am PDT | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref_name }}-${{ github.ref_type == 'branch' && github.sha }}-${{ github.event_name == 'workflow_dispatch' }}-${{ github.event_name == 'schedule' }} | |
| cancel-in-progress: true | |
| permissions: | |
| id-token: write | |
| contents: read | |
| jobs: | |
| # See job-filter.yml for rules on adding job filter conditions | |
| # action is inlined temporarily to avoid issues on the PRs | |
| job-filter: | |
| if: github.repository_owner == 'pytorch' | |
| runs-on: ubuntu-latest | |
| outputs: | |
| jobs: ${{ steps.set.outputs.jobs }} | |
| steps: | |
| - id: set | |
| run: | | |
| jobs="${{ github.event.inputs.jobs-to-include || '' }}" | |
| if [ -n "$jobs" ]; then | |
| echo "jobs= ${jobs} " >> "$GITHUB_OUTPUT" | |
| else | |
| echo "jobs=" >> "$GITHUB_OUTPUT" | |
| fi | |
| llm-td: | |
| if: github.repository_owner == 'pytorch' | |
| name: before-test | |
| uses: ./.github/workflows/llm_td_retrieval.yml | |
| permissions: | |
| id-token: write | |
| contents: read | |
| target-determination: | |
| name: before-test | |
| uses: ./.github/workflows/target_determination.yml | |
| needs: llm-td | |
| permissions: | |
| id-token: write | |
| contents: read | |
| 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 }} | |
| libtorch-linux-jammy-cuda12_8-py3_10-gcc11-debug-build: | |
| if: ${{ needs.job-filter.outputs.jobs == '' || contains(needs.job-filter.outputs.jobs, ' libtorch-linux-jammy-cuda12.8-py3.10-gcc11-debug ') }} | |
| name: libtorch-linux-jammy-cuda12.8-py3.10-gcc11-debug | |
| uses: ./.github/workflows/_linux-build.yml | |
| needs: | |
| - get-label-type | |
| - job-filter | |
| with: | |
| build-environment: libtorch-linux-jammy-cuda12.8-py3.10-gcc11 | |
| docker-image-name: ci-image:pytorch-linux-jammy-cuda12.8-cudnn9-py3-gcc11 | |
| build-generates-artifacts: false | |
| runner_prefix: "${{ needs.get-label-type.outputs.label-type }}" | |
| runner: "linux.c7i.4xlarge" | |
| test-matrix: | | |
| { include: [ | |
| { config: "default", shard: 1, num_shards: 1 }, | |
| ]} | |
| secrets: inherit | |
| linux-jammy-cuda12_8-py3_10-gcc11-build: | |
| if: ${{ needs.job-filter.outputs.jobs == '' || contains(needs.job-filter.outputs.jobs, ' linux-jammy-cuda12.8-py3.10-gcc11 ') }} | |
| name: linux-jammy-cuda12.8-py3.10-gcc11 | |
| uses: ./.github/workflows/_linux-build.yml | |
| needs: | |
| - get-label-type | |
| - job-filter | |
| with: | |
| runner_prefix: "${{ needs.get-label-type.outputs.label-type }}" | |
| build-environment: linux-jammy-cuda12.8-py3.10-gcc11 | |
| docker-image-name: ci-image:pytorch-linux-jammy-cuda12.8-cudnn9-py3-gcc11 | |
| cuda-arch-list: '7.5 8.9' | |
| test-matrix: | | |
| { include: [ | |
| { config: "default", shard: 1, num_shards: 5, runner: "${{ needs.get-label-type.outputs.label-type }}linux.g6.4xlarge.experimental.nvidia.gpu" }, | |
| { config: "default", shard: 2, num_shards: 5, runner: "${{ needs.get-label-type.outputs.label-type }}linux.g6.4xlarge.experimental.nvidia.gpu" }, | |
| { config: "default", shard: 3, num_shards: 5, runner: "${{ needs.get-label-type.outputs.label-type }}linux.g6.4xlarge.experimental.nvidia.gpu" }, | |
| { config: "default", shard: 4, num_shards: 5, runner: "${{ needs.get-label-type.outputs.label-type }}linux.g6.4xlarge.experimental.nvidia.gpu" }, | |
| { config: "default", shard: 5, num_shards: 5, runner: "${{ needs.get-label-type.outputs.label-type }}linux.g6.4xlarge.experimental.nvidia.gpu" }, | |
| { config: "distributed", shard: 1, num_shards: 3, runner: "${{ needs.get-label-type.outputs.label-type }}linux.g4dn.12xlarge.nvidia.gpu" }, | |
| { config: "distributed", shard: 2, num_shards: 3, runner: "${{ needs.get-label-type.outputs.label-type }}linux.g4dn.12xlarge.nvidia.gpu" }, | |
| { config: "distributed", shard: 3, num_shards: 3, runner: "${{ needs.get-label-type.outputs.label-type }}linux.g4dn.12xlarge.nvidia.gpu" }, | |
| { config: "pr_time_benchmarks", shard: 1, num_shards: 1, runner: "linux.g4dn.metal.nvidia.gpu" }, | |
| { config: "libtorch_agnostic_targetting", shard: 1, num_shards: 1, runner: "linux.g4dn.metal.nvidia.gpu" }, | |
| ]} | |
| secrets: inherit | |
| linux-jammy-cuda12_8-py3_10-gcc11-test: | |
| if: ${{ needs.job-filter.outputs.jobs == '' || contains(needs.job-filter.outputs.jobs, ' linux-jammy-cuda12.8-py3.10-gcc11 ') }} | |
| name: linux-jammy-cuda12.8-py3.10-gcc11 | |
| uses: ./.github/workflows/_linux-test.yml | |
| needs: | |
| - linux-jammy-cuda12_8-py3_10-gcc11-build | |
| - target-determination | |
| - job-filter | |
| with: | |
| timeout-minutes: 360 | |
| build-environment: ${{ needs.linux-jammy-cuda12_8-py3_10-gcc11-build.outputs.build-environment }} | |
| docker-image: ${{ needs.linux-jammy-cuda12_8-py3_10-gcc11-build.outputs.docker-image }} | |
| test-matrix: ${{ needs.linux-jammy-cuda12_8-py3_10-gcc11-build.outputs.test-matrix }} | |
| tests-to-include: ${{ github.event.inputs.tests-to-include || '' }} | |
| secrets: inherit | |
| linux-jammy-cuda13_0-py3_10-gcc11-build: | |
| if: ${{ needs.job-filter.outputs.jobs == '' || contains(needs.job-filter.outputs.jobs, ' linux-jammy-cuda13.0-py3.10-gcc11 ') }} | |
| name: linux-jammy-cuda13.0-py3.10-gcc11 | |
| uses: ./.github/workflows/_linux-build.yml | |
| needs: | |
| - get-label-type | |
| - job-filter | |
| 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 | |
| cuda-arch-list: '7.5 8.9' | |
| test-matrix: | | |
| { include: [ | |
| { config: "default", shard: 1, num_shards: 5, runner: "${{ needs.get-label-type.outputs.label-type }}linux.g6.4xlarge.experimental.nvidia.gpu" }, | |
| { config: "default", shard: 2, num_shards: 5, runner: "${{ needs.get-label-type.outputs.label-type }}linux.g6.4xlarge.experimental.nvidia.gpu" }, | |
| { config: "default", shard: 3, num_shards: 5, runner: "${{ needs.get-label-type.outputs.label-type }}linux.g6.4xlarge.experimental.nvidia.gpu" }, | |
| { config: "default", shard: 4, num_shards: 5, runner: "${{ needs.get-label-type.outputs.label-type }}linux.g6.4xlarge.experimental.nvidia.gpu" }, | |
| { config: "default", shard: 5, num_shards: 5, runner: "${{ needs.get-label-type.outputs.label-type }}linux.g6.4xlarge.experimental.nvidia.gpu" }, | |
| { config: "distributed", shard: 1, num_shards: 3, runner: "${{ needs.get-label-type.outputs.label-type }}linux.g4dn.12xlarge.nvidia.gpu" }, | |
| { config: "distributed", shard: 2, num_shards: 3, runner: "${{ needs.get-label-type.outputs.label-type }}linux.g4dn.12xlarge.nvidia.gpu" }, | |
| { config: "distributed", shard: 3, num_shards: 3, runner: "${{ needs.get-label-type.outputs.label-type }}linux.g4dn.12xlarge.nvidia.gpu" }, | |
| { config: "pr_time_benchmarks", shard: 1, num_shards: 1, runner: "linux.g4dn.metal.nvidia.gpu" }, | |
| ]} | |
| secrets: inherit | |
| linux-jammy-cuda13_0-py3_10-gcc11-test: | |
| if: ${{ needs.job-filter.outputs.jobs == '' || contains(needs.job-filter.outputs.jobs, ' linux-jammy-cuda13.0-py3.10-gcc11 ') }} | |
| name: linux-jammy-cuda13.0-py3.10-gcc11 | |
| uses: ./.github/workflows/_linux-test.yml | |
| needs: | |
| - linux-jammy-cuda13_0-py3_10-gcc11-build | |
| - target-determination | |
| - job-filter | |
| with: | |
| timeout-minutes: 360 | |
| build-environment: linux-jammy-cuda13.0-py3.10-gcc11 | |
| 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 }} | |
| tests-to-include: ${{ github.event.inputs.tests-to-include || '' }} | |
| secrets: inherit | |
| # no-ops builds test USE_PER_OPERATOR_HEADERS=0 where ATen/ops is not generated | |
| linux-jammy-cuda12_8-py3_10-gcc11-no-ops-build: | |
| if: ${{ needs.job-filter.outputs.jobs == '' || contains(needs.job-filter.outputs.jobs, ' linux-jammy-cuda12.8-py3.10-gcc11-no-ops ') }} | |
| name: linux-jammy-cuda12.8-py3.10-gcc11-no-ops | |
| uses: ./.github/workflows/_linux-build.yml | |
| needs: | |
| - get-label-type | |
| - job-filter | |
| with: | |
| runner_prefix: "${{ needs.get-label-type.outputs.label-type }}" | |
| build-environment: linux-jammy-cuda12.8-py3.10-gcc11-no-ops | |
| docker-image-name: ci-image:pytorch-linux-jammy-cuda12.8-cudnn9-py3-gcc11 | |
| test-matrix: | | |
| { include: [ | |
| { config: "default", shard: 1, num_shards: 1 }, | |
| ]} | |
| secrets: inherit | |
| linux-jammy-cuda13_0-py3_10-gcc11-no-ops-build: | |
| if: ${{ needs.job-filter.outputs.jobs == '' || contains(needs.job-filter.outputs.jobs, ' linux-jammy-cuda13.0-py3.10-gcc11-no-ops ') }} | |
| name: linux-jammy-cuda13.0-py3.10-gcc11-no-ops | |
| uses: ./.github/workflows/_linux-build.yml | |
| needs: | |
| - get-label-type | |
| - job-filter | |
| with: | |
| runner_prefix: "${{ needs.get-label-type.outputs.label-type }}" | |
| build-environment: linux-jammy-cuda13.0-py3.10-gcc11-no-ops | |
| cuda-arch-list: '7.5 8.9' | |
| docker-image-name: ci-image:pytorch-linux-jammy-cuda13.0-cudnn9-py3-gcc11 | |
| test-matrix: | | |
| { include: [ | |
| { config: "default", shard: 1, num_shards: 1 }, | |
| ]} | |
| secrets: inherit | |
| macos-py3-arm64-build: | |
| if: ${{ github.repository_owner == 'pytorch' && (needs.job-filter.outputs.jobs == '' || contains(needs.job-filter.outputs.jobs, ' macos-py3-arm64 ')) }} | |
| name: macos-py3-arm64 | |
| uses: ./.github/workflows/_mac-build.yml | |
| needs: job-filter | |
| with: | |
| sync-tag: macos-py3-arm64-build | |
| build-environment: macos-py3-arm64 | |
| runner-type: macos-m1-stable | |
| build-generates-artifacts: true | |
| # To match the one pre-installed in the m1 runners | |
| python-version: 3.12.7 | |
| test-matrix: | | |
| { include: [ | |
| { config: "default", shard: 1, num_shards: 3, runner: "macos-m1-stable" }, | |
| { config: "default", shard: 2, num_shards: 3, runner: "macos-m1-stable" }, | |
| { config: "default", shard: 3, num_shards: 3, runner: "macos-m1-stable" }, | |
| { config: "mps", shard: 1, num_shards: 1, runner: "macos-m1-14" }, | |
| { config: "mps", shard: 1, num_shards: 1, runner: "macos-m2-15" }, | |
| { config: "openreg", shard: 1, num_shards: 1, runner: "macos-m1-stable" }, | |
| ]} | |
| secrets: inherit | |
| macos-py3-arm64-test: | |
| if: ${{ needs.job-filter.outputs.jobs == '' || contains(needs.job-filter.outputs.jobs, ' macos-py3-arm64 ') }} | |
| name: macos-py3-arm64 | |
| uses: ./.github/workflows/_mac-test.yml | |
| needs: | |
| - macos-py3-arm64-build | |
| - target-determination | |
| - job-filter | |
| with: | |
| build-environment: ${{ needs.macos-py3-arm64-build.outputs.build-environment }} | |
| # Same as the build job | |
| python-version: 3.12.7 | |
| test-matrix: ${{ needs.macos-py3-arm64-build.outputs.test-matrix }} | |
| disable-monitor: false | |
| secrets: inherit | |
| win-vs2022-cpu-py3-build: | |
| if: ${{ needs.job-filter.outputs.jobs == '' || contains(needs.job-filter.outputs.jobs, ' win-vs2022-cpu-py3 ') }} | |
| name: win-vs2022-cpu-py3 | |
| uses: ./.github/workflows/_win-build.yml | |
| needs: | |
| - get-label-type | |
| - job-filter | |
| with: | |
| build-environment: win-vs2022-cpu-py3 | |
| cuda-version: cpu | |
| runner: "${{ needs.get-label-type.outputs.label-type }}windows.4xlarge.nonephemeral" | |
| test-matrix: | | |
| { include: [ | |
| { config: "default", shard: 1, num_shards: 4, runner: "${{ needs.get-label-type.outputs.label-type }}windows.4xlarge.nonephemeral" }, | |
| { config: "default", shard: 2, num_shards: 4, runner: "${{ needs.get-label-type.outputs.label-type }}windows.4xlarge.nonephemeral" }, | |
| { config: "default", shard: 3, num_shards: 4, runner: "${{ needs.get-label-type.outputs.label-type }}windows.4xlarge.nonephemeral" }, | |
| { config: "default", shard: 4, num_shards: 4, runner: "${{ needs.get-label-type.outputs.label-type }}windows.4xlarge.nonephemeral" }, | |
| { config: "openreg", shard: 1, num_shards: 1, runner: "${{ needs.get-label-type.outputs.label-type }}windows.4xlarge.nonephemeral" }, | |
| ]} | |
| secrets: inherit | |
| win-vs2022-cpu-py3-test: | |
| if: ${{ needs.job-filter.outputs.jobs == '' || contains(needs.job-filter.outputs.jobs, ' win-vs2022-cpu-py3 ') }} | |
| name: win-vs2022-cpu-py3 | |
| uses: ./.github/workflows/_win-test.yml | |
| needs: | |
| - win-vs2022-cpu-py3-build | |
| - target-determination | |
| - job-filter | |
| with: | |
| build-environment: ${{ needs.win-vs2022-cpu-py3-build.outputs.build-environment }} | |
| cuda-version: cpu | |
| test-matrix: ${{ needs.win-vs2022-cpu-py3-build.outputs.test-matrix }} | |
| disable-monitor: false | |
| secrets: inherit | |
| win-vs2022-cuda12_8-py3-build: | |
| if: ${{ needs.job-filter.outputs.jobs == '' || contains(needs.job-filter.outputs.jobs, ' win-vs2022-cuda12.8-py3 ') }} | |
| name: win-vs2022-cuda12.8-py3 | |
| uses: ./.github/workflows/_win-build.yml | |
| needs: | |
| - get-label-type | |
| - job-filter | |
| with: | |
| build-environment: win-vs2022-cuda12.8-py3 | |
| cuda-version: "12.8" | |
| runner: "${{ needs.get-label-type.outputs.label-type }}windows.4xlarge.nonephemeral" | |
| secrets: inherit | |
| linux-jammy-rocm-py3_10-build: | |
| if: ${{ startsWith(github.event.ref, 'refs/tags/ciflow/trunk') || (needs.job-filter.outputs.jobs != '' && contains(needs.job-filter.outputs.jobs, ' linux-jammy-rocm-py3.10 ')) }} | |
| name: linux-jammy-rocm-py3.10 | |
| uses: ./.github/workflows/_linux-build.yml | |
| needs: | |
| - get-label-type | |
| - job-filter | |
| with: | |
| runner_prefix: "${{ needs.get-label-type.outputs.label-type }}" | |
| build-environment: linux-jammy-rocm-py3.10 | |
| docker-image-name: ci-image:pytorch-linux-jammy-rocm-n-py3 | |
| sync-tag: rocm-build | |
| test-matrix: | | |
| { include: [ | |
| { config: "default", shard: 1, num_shards: 6, runner: "linux.rocm.gpu.gfx942.1" }, | |
| { config: "default", shard: 2, num_shards: 6, runner: "linux.rocm.gpu.gfx942.1" }, | |
| { config: "default", shard: 3, num_shards: 6, runner: "linux.rocm.gpu.gfx942.1" }, | |
| { config: "default", shard: 4, num_shards: 6, runner: "linux.rocm.gpu.gfx942.1" }, | |
| { config: "default", shard: 5, num_shards: 6, runner: "linux.rocm.gpu.gfx942.1" }, | |
| { config: "default", shard: 6, num_shards: 6, runner: "linux.rocm.gpu.gfx942.1" }, | |
| { config: "distributed", shard: 1, num_shards: 3, runner: "linux.rocm.gpu.gfx942.4" }, | |
| { config: "distributed", shard: 2, num_shards: 3, runner: "linux.rocm.gpu.gfx942.4" }, | |
| { config: "distributed", shard: 3, num_shards: 3, runner: "linux.rocm.gpu.gfx942.4" }, | |
| ]} | |
| secrets: inherit | |
| linux-jammy-rocm-py3_10-test: | |
| if: ${{ startsWith(github.event.ref, 'refs/tags/ciflow/trunk') || (needs.job-filter.outputs.jobs != '' && contains(needs.job-filter.outputs.jobs, ' linux-jammy-rocm-py3.10 ')) }} | |
| permissions: | |
| id-token: write | |
| contents: read | |
| name: linux-jammy-rocm-py3.10 | |
| uses: ./.github/workflows/_rocm-test.yml | |
| needs: | |
| - linux-jammy-rocm-py3_10-build | |
| - target-determination | |
| - job-filter | |
| with: | |
| build-environment: ${{ needs.linux-jammy-rocm-py3_10-build.outputs.build-environment }} | |
| docker-image: ${{ needs.linux-jammy-rocm-py3_10-build.outputs.docker-image }} | |
| test-matrix: ${{ needs.linux-jammy-rocm-py3_10-build.outputs.test-matrix }} | |
| tests-to-include: ${{ github.event.inputs.tests-to-include || '' }} | |
| secrets: inherit | |
| inductor-build: | |
| if: ${{ needs.job-filter.outputs.jobs == '' || contains(needs.job-filter.outputs.jobs, ' inductor-build ') }} | |
| name: inductor-build | |
| uses: ./.github/workflows/_linux-build.yml | |
| needs: | |
| - get-label-type | |
| - job-filter | |
| with: | |
| build-environment: linux-jammy-cuda12.8-py3.12-gcc11-sm80 | |
| docker-image-name: ci-image:pytorch-linux-jammy-cuda12.8-cudnn9-py3-gcc11-inductor-benchmarks | |
| cuda-arch-list: '8.0' | |
| secrets: inherit | |
| inductor-build-cuda13: | |
| if: ${{ needs.job-filter.outputs.jobs == '' || contains(needs.job-filter.outputs.jobs, ' inductor-build-cuda13 ') }} | |
| name: inductor-build-cuda13 | |
| uses: ./.github/workflows/_linux-build.yml | |
| needs: | |
| - get-label-type | |
| - job-filter | |
| with: | |
| build-environment: linux-jammy-cuda13.0-py3.12-gcc11-sm80 | |
| docker-image-name: ci-image:pytorch-linux-jammy-cuda13.0-cudnn9-py3-gcc11-inductor-benchmarks | |
| cuda-arch-list: '8.0' | |
| secrets: inherit | |
| # Test cross-compiled models with Windows libs extracted from wheel | |
| cross-compile-linux-test: | |
| if: ${{ needs.job-filter.outputs.jobs == '' || contains(needs.job-filter.outputs.jobs, ' cross-compile-linux-test ') }} | |
| name: cross-compile-linux-test | |
| uses: ./.github/workflows/_linux-test.yml | |
| needs: | |
| - linux-jammy-cuda12_8-py3_10-gcc11-build | |
| - get-label-type | |
| - win-vs2022-cuda12_8-py3-build | |
| - job-filter | |
| with: | |
| build-environment: ${{ needs.linux-jammy-cuda12_8-py3_10-gcc11-build.outputs.build-environment }} | |
| docker-image: ${{ needs.linux-jammy-cuda12_8-py3_10-gcc11-build.outputs.docker-image }} | |
| test-matrix: | | |
| { include: [ | |
| { config: "aoti_cross_compile_for_windows", shard: 1, num_shards: 1, runner: "${{ needs.get-label-type.outputs.label-type }}linux.g6.4xlarge.experimental.nvidia.gpu", win_torch_wheel_artifact: "win-vs2022-cuda12.8-py3" }, | |
| ]} | |
| tests-to-include: ${{ github.event.inputs.tests-to-include || '' }} | |
| secrets: inherit | |
| verify-cachebench-cpu-build: | |
| if: ${{ needs.job-filter.outputs.jobs == '' || contains(needs.job-filter.outputs.jobs, ' verify-cachebench-cpu-build ') || contains(needs.job-filter.outputs.jobs, ' verify-cachebench-cpu-test ') }} | |
| name: verify-cachebench-cpu-build | |
| uses: ./.github/workflows/_linux-build.yml | |
| needs: | |
| - get-label-type | |
| - job-filter | |
| with: | |
| runner_prefix: "${{ needs.get-label-type.outputs.label-type }}" | |
| build-environment: linux-jammy-py3.10-gcc11 | |
| docker-image-name: ci-image:pytorch-linux-jammy-py3-gcc11-inductor-benchmarks | |
| test-matrix: | | |
| { include: [ | |
| { config: "verify_cachebench", shard: 1, num_shards: 1, runner: "${{ needs.get-label-type.outputs.label-type }}linux.2xlarge" }, | |
| ]} | |
| secrets: inherit | |
| verify-cachebench-cpu-test: | |
| if: ${{ needs.job-filter.outputs.jobs == '' || contains(needs.job-filter.outputs.jobs, ' verify-cachebench-cpu-test ') }} | |
| name: verify-cachebench-cpu-test | |
| uses: ./.github/workflows/_linux-test.yml | |
| needs: | |
| - verify-cachebench-cpu-build | |
| - target-determination | |
| - job-filter | |
| with: | |
| build-environment: ${{ needs.verify-cachebench-cpu-build.outputs.build-environment }} | |
| docker-image: ${{ needs.verify-cachebench-cpu-build.outputs.docker-image }} | |
| test-matrix: ${{ needs.verify-cachebench-cpu-build.outputs.test-matrix }} | |
| tests-to-include: ${{ github.event.inputs.tests-to-include || '' }} | |
| secrets: inherit | |
| linux-jammy-py3-clang12-executorch-build: | |
| # if: ${{ needs.job-filter.outputs.jobs == '' || contains(needs.job-filter.outputs.jobs, ' linux-jammy-py3-clang12-executorch ') }} | |
| name: linux-jammy-py3-clang12-executorch | |
| uses: ./.github/workflows/_linux-build.yml | |
| needs: | |
| - get-label-type | |
| - job-filter | |
| if: false # Has been broken for a while | |
| with: | |
| runner_prefix: "${{ needs.get-label-type.outputs.label-type }}" | |
| build-environment: linux-jammy-py3-clang12-executorch | |
| docker-image-name: ci-image:pytorch-linux-jammy-py3-clang12-executorch | |
| test-matrix: | | |
| { include: [ | |
| { config: "executorch", shard: 1, num_shards: 1, runner: "${{ needs.get-label-type.outputs.label-type }}linux.2xlarge" }, | |
| ]} | |
| secrets: inherit | |
| linux-jammy-py3-clang12-executorch-test: | |
| if: ${{ needs.job-filter.outputs.jobs == '' || contains(needs.job-filter.outputs.jobs, ' linux-jammy-py3-clang12-executorch ') }} | |
| name: linux-jammy-py3-clang12-executorch | |
| uses: ./.github/workflows/_linux-test.yml | |
| needs: | |
| - linux-jammy-py3-clang12-executorch-build | |
| - job-filter | |
| with: | |
| build-environment: ${{ needs.linux-jammy-py3-clang12-executorch-build.outputs.build-environment }} | |
| docker-image: ${{ needs.linux-jammy-py3-clang12-executorch-build.outputs.docker-image }} | |
| test-matrix: ${{ needs.linux-jammy-py3-clang12-executorch-build.outputs.test-matrix }} | |
| tests-to-include: ${{ github.event.inputs.tests-to-include || '' }} | |
| secrets: inherit | |
| linux-jammy-py3_10-gcc11-full-debug-build-only: | |
| if: ${{ needs.job-filter.outputs.jobs == '' || contains(needs.job-filter.outputs.jobs, ' linux-jammy-py3.10-gcc11-full-debug-build-only ') }} | |
| name: linux-jammy-py3.10-gcc11-full-debug-build-only | |
| uses: ./.github/workflows/_linux-build.yml | |
| needs: | |
| - get-label-type | |
| - job-filter | |
| with: | |
| runner_prefix: "${{ needs.get-label-type.outputs.label-type }}" | |
| runner: linux.2xlarge.memory | |
| build-environment: linux-jammy-py3.10-gcc11-full-debug-build-only | |
| docker-image-name: ci-image:pytorch-linux-jammy-py3.10-gcc11 | |
| secrets: inherit |