diff --git a/.github/workflows/validate-aarch64-linux-binaries.yml b/.github/workflows/validate-aarch64-linux-binaries.yml index 6b1a60d7c..8761df4f9 100644 --- a/.github/workflows/validate-aarch64-linux-binaries.yml +++ b/.github/workflows/validate-aarch64-linux-binaries.yml @@ -27,6 +27,11 @@ on: default: "" required: false type: string + use-only-dl-pytorch-org: + description: 'Use only download.pytorch.org when generating wheel install command' + default: false + required: false + type: boolean workflow_dispatch: inputs: channel: @@ -58,6 +63,11 @@ on: default: "" required: false type: string + use-only-dl-pytorch-org: + description: 'Use only download.pytorch.org when generating wheel install command' + default: false + required: false + type: boolean jobs: generate-aarch64-linux-matrix: @@ -67,6 +77,8 @@ jobs: os: linux-aarch64 channel: ${{ inputs.channel }} with-cuda: disable + use-only-dl-pytorch-org: ${{ inputs.use-only-dl-pytorch-org }} + linux-aarch64: needs: generate-aarch64-linux-matrix strategy: diff --git a/.github/workflows/validate-binaries.yml b/.github/workflows/validate-binaries.yml index 558be8e56..78e631ab8 100644 --- a/.github/workflows/validate-binaries.yml +++ b/.github/workflows/validate-binaries.yml @@ -32,6 +32,11 @@ on: default: false required: false type: boolean + use-only-dl-pytorch-org: + description: 'Use only download.pytorch.org when generating wheel install command' + default: false + required: false + type: boolean workflow_dispatch: inputs: os: @@ -75,6 +80,11 @@ on: default: false required: false type: boolean + use-only-dl-pytorch-org: + description: 'Use only download.pytorch.org when generating wheel install command' + default: false + required: false + type: boolean jobs: @@ -93,6 +103,7 @@ jobs: torchonly: ${{ inputs.torchonly }} version: ${{ inputs.version }} release-matrix: ${{ needs.generate-release-matrix.outputs.matrix }} + use-only-dl-pytorch-org: ${{ inputs.use-only-dl-pytorch-org }} linux: if: inputs.os == 'linux' || inputs.os == 'all' @@ -105,6 +116,7 @@ jobs: version: ${{ inputs.version }} release-matrix: ${{ needs.generate-release-matrix.outputs.matrix }} include-test-ops: ${{ inputs.include-test-ops }} + use-only-dl-pytorch-org: ${{ inputs.use-only-dl-pytorch-org }} linux-aarch64: if: inputs.os == 'linux-aarch64' || inputs.os == 'all' @@ -116,6 +128,7 @@ jobs: torchonly: ${{ inputs.torchonly }} version: ${{ inputs.version }} release-matrix: ${{ needs.generate-release-matrix.outputs.matrix }} + use-only-dl-pytorch-org: ${{ inputs.use-only-dl-pytorch-org }} mac: if: inputs.os == 'macos' || inputs.os == 'all' @@ -127,6 +140,7 @@ jobs: torchonly: ${{ inputs.torchonly }} version: ${{ inputs.version }} release-matrix: ${{ needs.generate-release-matrix.outputs.matrix }} + use-only-dl-pytorch-org: ${{ inputs.use-only-dl-pytorch-org }} mac-arm64: if: inputs.os == 'macos' || inputs.os == 'all' @@ -138,3 +152,4 @@ jobs: torchonly: ${{ inputs.torchonly }} version: ${{ inputs.version }} release-matrix: ${{ needs.generate-release-matrix.outputs.matrix }} + use-only-dl-pytorch-org: ${{ inputs.use-only-dl-pytorch-org }} diff --git a/.github/workflows/validate-linux-binaries.yml b/.github/workflows/validate-linux-binaries.yml index de5bda999..08507f64d 100644 --- a/.github/workflows/validate-linux-binaries.yml +++ b/.github/workflows/validate-linux-binaries.yml @@ -32,6 +32,11 @@ on: default: false required: false type: boolean + use-only-dl-pytorch-org: + description: 'Use only download.pytorch.org when generating wheel install command' + default: false + required: false + type: boolean workflow_dispatch: inputs: channel: @@ -68,6 +73,11 @@ on: default: false required: false type: boolean + use-only-dl-pytorch-org: + description: 'Use only download.pytorch.org when generating wheel install command' + default: false + required: false + type: boolean jobs: generate-linux-matrix: @@ -76,6 +86,7 @@ jobs: package-type: all os: linux channel: ${{ inputs.channel }} + use-only-dl-pytorch-org: ${{ inputs.use-only-dl-pytorch-org }} linux: needs: generate-linux-matrix diff --git a/.github/workflows/validate-macos-arm64-binaries.yml b/.github/workflows/validate-macos-arm64-binaries.yml index 541183b9a..dea76ffeb 100644 --- a/.github/workflows/validate-macos-arm64-binaries.yml +++ b/.github/workflows/validate-macos-arm64-binaries.yml @@ -27,6 +27,11 @@ on: default: "" required: false type: string + use-only-dl-pytorch-org: + description: 'Use only download.pytorch.org when generating wheel install command' + default: false + required: false + type: boolean workflow_dispatch: inputs: channel: @@ -58,6 +63,11 @@ on: default: "" required: false type: string + use-only-dl-pytorch-org: + description: 'Use only download.pytorch.org when generating wheel install command' + default: false + required: false + type: boolean jobs: generate-macos-arm64-matrix: @@ -66,6 +76,8 @@ jobs: package-type: all os: macos-arm64 channel: ${{ inputs.channel }} + use-only-dl-pytorch-org: ${{ inputs.use-only-dl-pytorch-org }} + macos-arm64: needs: generate-macos-arm64-matrix strategy: diff --git a/.github/workflows/validate-macos-binaries.yml b/.github/workflows/validate-macos-binaries.yml index 9610b36f7..76035a97d 100644 --- a/.github/workflows/validate-macos-binaries.yml +++ b/.github/workflows/validate-macos-binaries.yml @@ -27,6 +27,11 @@ on: default: "" required: false type: string + use-only-dl-pytorch-org: + description: 'Use only download.pytorch.org when generating wheel install command' + default: false + required: false + type: boolean workflow_dispatch: inputs: channel: @@ -58,6 +63,11 @@ on: default: "" required: false type: string + use-only-dl-pytorch-org: + description: 'Use only download.pytorch.org when generating wheel install command' + default: false + required: false + type: boolean jobs: generate-macos-matrix: @@ -66,6 +76,8 @@ jobs: package-type: all os: macos channel: ${{ inputs.channel }} + use-only-dl-pytorch-org: ${{ inputs.use-only-dl-pytorch-org }} + macos: needs: generate-macos-matrix strategy: diff --git a/.github/workflows/validate-windows-binaries.yml b/.github/workflows/validate-windows-binaries.yml index 1c501cfb3..9d4b3a8c4 100644 --- a/.github/workflows/validate-windows-binaries.yml +++ b/.github/workflows/validate-windows-binaries.yml @@ -27,6 +27,11 @@ on: default: "" required: false type: string + use-only-dl-pytorch-org: + description: 'Use only download.pytorch.org when generating wheel install command' + default: false + required: false + type: boolean workflow_dispatch: inputs: channel: @@ -58,6 +63,11 @@ on: default: "" required: false type: string + use-only-dl-pytorch-org: + description: 'Use only download.pytorch.org when generating wheel install command' + default: false + required: false + type: boolean jobs: generate-windows-matrix: @@ -66,6 +76,8 @@ jobs: package-type: all os: windows channel: ${{ inputs.channel }} + use-only-dl-pytorch-org: ${{ inputs.use-only-dl-pytorch-org }} + win: needs: generate-windows-matrix strategy: