From 9886b67d6d7c20c7e3d759be0b5233b92baaec35 Mon Sep 17 00:00:00 2001 From: atalman Date: Thu, 22 Dec 2022 06:41:14 -0800 Subject: [PATCH] Add cuda to jobname for validate domain library --- .github/workflows/validate-domain-library.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/validate-domain-library.yml b/.github/workflows/validate-domain-library.yml index 6adc9d90f..9b1536d98 100644 --- a/.github/workflows/validate-domain-library.yml +++ b/.github/workflows/validate-domain-library.yml @@ -80,12 +80,12 @@ jobs: matrix: ${{ fromJson(needs.generate-linux-matrix.outputs.matrix) }} fail-fast: false uses: pytorch/test-infra/.github/workflows/linux_job.yml@main - name: "linux-${{ matrix.package_type }}-${{ matrix.python_version }}" + name: "linux-${{ matrix.package_type }}-${{ matrix.python_version }}-${{ matrix.desired_cuda }}" with: runner: ${{ matrix.validation_runner }} repository: ${{ inputs.repository }} ref: ${{ inputs.ref || github.ref }} - job-name: "linux-${{ matrix.package_type }}-${{ matrix.python_version }}" + job-name: "linux-${{ matrix.package_type }}-${{ matrix.python_version }}-${{ matrix.desired_cuda }}" script: | set -ex export ENV_NAME="conda-env-${{ github.run_id }}" @@ -104,12 +104,12 @@ jobs: matrix: ${{ fromJson(needs.generate-windows-matrix.outputs.matrix) }} fail-fast: false uses: pytorch/test-infra/.github/workflows/windows_job.yml@main - name: "windows-${{ matrix.package_type }}-${{ matrix.python_version }}" + name: "windows-${{ matrix.package_type }}-${{ matrix.python_version }}-${{ matrix.desired_cuda }}" with: runner: ${{ matrix.validation_runner }} repository: ${{ inputs.repository }} ref: ${{ inputs.ref || github.ref }} - job-name: "windows-${{ matrix.package_type }}-${{ matrix.python_version }}" + job-name: "windows-${{ matrix.package_type }}-${{ matrix.python_version }}-${{ matrix.desired_cuda }}" script: | set -ex export ENV_NAME="conda-env-${{ github.run_id }}" @@ -129,12 +129,12 @@ jobs: matrix: ${{ fromJson(needs.generate-macos-matrix.outputs.matrix) }} fail-fast: false uses: pytorch/test-infra/.github/workflows/macos_job.yml@main - name: "macos-${{ matrix.package_type }}-${{ matrix.python_version }}" + name: "macos-${{ matrix.package_type }}-${{ matrix.python_version }}-${{ matrix.desired_cuda }}" with: runner: ${{ matrix.validation_runner }} repository: ${{ inputs.repository }} ref: ${{ inputs.ref || github.ref }} - job-name: "macos-${{ matrix.package_type }}-${{ matrix.python_version }}" + job-name: "macos-${{ matrix.package_type }}-${{ matrix.python_version }}-${{ matrix.desired_cuda }}" script: | set -ex export ENV_NAME="conda-env-${{ github.run_id }}" @@ -153,12 +153,12 @@ jobs: matrix: ${{ fromJson(needs.generate-macos-arm64-matrix.outputs.matrix) }} fail-fast: false uses: pytorch/test-infra/.github/workflows/macos_job.yml@main - name: "macos-${{ matrix.package_type }}-${{ matrix.python_version }}" + name: "macos-${{ matrix.package_type }}-${{ matrix.python_version }}-${{ matrix.desired_cuda }}" with: runner: ${{ matrix.validation_runner }} repository: ${{ inputs.repository }} ref: ${{ inputs.ref || github.ref }} - job-name: "macos-arm64-${{ matrix.package_type }}-${{ matrix.python_version }}" + job-name: "macos-arm64-${{ matrix.package_type }}-${{ matrix.python_version }}-${{ matrix.desired_cuda }}" script: | set -ex export ENV_NAME="conda-env-${{ github.run_id }}"