Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Shorten binary validation workflow names, to improve readability of the HUD and GH views #1159

Merged
merged 1 commit into from
Oct 6, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/validate-binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,19 +41,19 @@ on:
- all

jobs:
validate-windows-binaries:
win:
if: inputs.os == 'windows' || inputs.os == 'all'
uses: ./.github/workflows/validate-windows-binaries.yml
with:
channel: ${{ inputs.channel }}

validate-linux-binaries:
linux:
if: inputs.os == 'linux' || inputs.os == 'all'
uses: ./.github/workflows/validate-linux-binaries.yml
with:
channel: ${{ inputs.channel }}

validate-mac-binaries:
mac:
if: inputs.os == 'macos' || inputs.os == 'all'
uses: ./.github/workflows/validate-macos-binaries.yml
with:
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/validate-linux-binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
os: linux
channel: ${{ inputs.channel }}

validate-linux-binaries-conda:
linux-conda:
needs: generate-linux-conda-matrix
strategy:
matrix:
Expand All @@ -58,7 +58,8 @@ jobs:
dev_toolset: ''
package_type: conda
target_os: linux
validate-linux-binaries-wheels:

linux-wheel:
needs: generate-linux-wheel-matrix
strategy:
matrix:
Expand All @@ -78,7 +79,7 @@ jobs:
package_type: wheel
target_os: linux

validate-linux-libtorch-binaries:
linux-libt:
needs: generate-linux-libtorch-matrix
strategy:
matrix:
Expand Down
11 changes: 7 additions & 4 deletions .github/workflows/validate-macos-binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
os: macos
channel: ${{ inputs.channel }}

validate-macos-arm64-binaries-conda:
mac-arm64-conda:
needs: generate-macos-arm64-conda-matrix
strategy:
matrix:
Expand All @@ -63,7 +63,8 @@ jobs:
desired_cuda: ${{ matrix.desired_cuda }}
package_type: conda
target_os: macos
validate-macos-arm64-binaries-wheel:

mac-arm64-wheel:
needs: generate-macos-arm64-wheel-matrix
strategy:
matrix:
Expand All @@ -81,7 +82,8 @@ jobs:
desired_cuda: ${{ matrix.desired_cuda }}
package_type: wheel
target_os: macos
validate-macos-x86_64-binaries-conda:

mac-x64-conda:
needs: generate-macos-x86_64-conda-matrix
strategy:
matrix:
Expand All @@ -99,7 +101,8 @@ jobs:
desired_cuda: ${{ matrix.desired_cuda }}
package_type: conda
target_os: macos
validate-macos-x86_64-binaries-wheel:

mac-x64-wheel:
needs: generate-macos-x86_64-wheel-matrix
strategy:
matrix:
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/validate-nightly-binaries.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
name: Validate nightly binaries (all OS)
# Scheduled validation of the nightly binaries
name: cron

on:
schedule:
Expand All @@ -8,7 +9,7 @@ on:
workflow_dispatch:
push:
branches:
main
- main
paths:
- .github/workflows/validate-nightly-binaries.yml
- .github/workflows/validate-linux-binaries.yml
Expand All @@ -24,7 +25,7 @@ on:
- .test/smoke_test/*

jobs:
validate-nightly-binaries:
nightly:
uses: ./.github/workflows/validate-binaries.yml
with:
channel: nightly
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/validate-release-binaries.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
name: Validate release binaries (all OS)
# Scheduled validation of the release binaries
name: cron

on:
schedule:
Expand All @@ -8,7 +9,7 @@ on:
workflow_dispatch:
push:
branches:
main
- main
paths:
- .github/workflows/validate-release-binaries.yml
- .github/workflows/validate-linux-binaries.yml
Expand All @@ -24,7 +25,7 @@ on:
- .test/smoke_test/*

jobs:
validate-release-binaries:
release:
uses: ./.github/workflows/validate-binaries.yml
with:
channel: release
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/validate-windows-binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
os: windows
channel: ${{ inputs.channel }}

validate-windows-binaries-conda:
win-conda:
needs: generate-windows-conda-matrix
strategy:
matrix:
Expand All @@ -57,7 +57,7 @@ jobs:
installation: ${{ matrix.installation }}
python_version: ${{ matrix.python_version }}

validate-windows-binaries-wheel:
win-wheel:
needs: generate-windows-wheel-matrix
strategy:
matrix:
Expand All @@ -75,7 +75,7 @@ jobs:
installation: ${{ matrix.installation }}
python_version: ${{ matrix.python_version }}

validate-windows-libtorch-binaries:
win-libt:
needs: generate-windows-libtorch-matrix
strategy:
matrix:
Expand Down