Skip to content

Commit

Permalink
Test version validations (#1604)
Browse files Browse the repository at this point in the history
* test

* test

* test
  • Loading branch information
atalman committed Nov 16, 2023
1 parent 8a85f50 commit 2a10fe4
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/validate-binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:
ref: ${{ inputs.ref || github.ref }}
torchonly: ${{ inputs.torchonly }}
version: ${{ inputs.version }}
release-matrix: ${{ fromJson(needs.generate-linux-matrix.outputs.matrix) }}
release-matrix: ${{ fromJson(needs.generate-release-matrix.outputs.matrix) }}

linux:
if: inputs.os == 'linux' || inputs.os == 'all'
Expand All @@ -93,7 +93,7 @@ jobs:
ref: ${{ inputs.ref || github.ref }}
torchonly: ${{ inputs.torchonly }}
version: ${{ inputs.version }}
release-matrix: ${{ fromJson(needs.generate-linux-matrix.outputs.matrix) }}
release-matrix: ${{ fromJson(needs.generate-release-matrix.outputs.matrix) }}

linux-aarch64:
if: inputs.os == 'linux-aarch64'
Expand All @@ -104,8 +104,7 @@ jobs:
ref: ${{ inputs.ref || github.ref }}
torchonly: ${{ inputs.torchonly }}
version: ${{ inputs.version }}
release-matrix: ${{ fromJson(needs.generate-linux-matrix.outputs.matrix) }}

release-matrix: ${{ fromJson(needs.generate-release-matrix.outputs.matrix) }}
mac:
if: inputs.os == 'macos' || inputs.os == 'all'
needs: generate-release-matrix
Expand All @@ -115,7 +114,7 @@ jobs:
ref: ${{ inputs.ref || github.ref }}
torchonly: ${{ inputs.torchonly }}
version: ${{ inputs.version }}
release-matrix: ${{ fromJson(needs.generate-linux-matrix.outputs.matrix) }}
release-matrix: ${{ fromJson(needs.generate-rlease-matrix.outputs.matrix) }}

mac-arm64:
if: inputs.os == 'macos' || inputs.os == 'all'
Expand All @@ -126,4 +125,4 @@ jobs:
ref: ${{ inputs.ref || github.ref }}
torchonly: ${{ inputs.torchonly }}
version: ${{ inputs.version }}
release-matrix: ${{ fromJson(needs.generate-linux-matrix.outputs.matrix) }}
release-matrix: ${{ fromJson(needs.generate-release-matrix.outputs.matrix) }}

0 comments on commit 2a10fe4

Please sign in to comment.