Skip to content

Commit

Permalink
path
Browse files Browse the repository at this point in the history
  • Loading branch information
atalman committed Dec 10, 2024
1 parent 6c5f104 commit 68bf71a
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/validate-binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,14 +126,14 @@ on:

jobs:
generate-release-matrix:
uses: pytorch/test-infra/.github/workflows/generate_release_matrix.yml@main
uses: .github/workflows/generate_release_matrix.yml

Check failure

Code scanning / lintrunner

ACTIONLINT/[workflow-call] Error

reusable workflow call ".github/workflows/generate_release_matrix.yml" at "uses" is not following the format "owner/repo/path/to/workflow.yml@ref" nor "./path/to/workflow.yml". see https://docs.github.com/en/actions/learn-github-actions/reusing-workflows for more details
with:
version: ${{ inputs.version }}

win:
if: inputs.os == 'windows' || inputs.os == 'all'
needs: generate-release-matrix
uses: ./.github/workflows/validate-windows-binaries.yml
uses: .github/workflows/validate-windows-binaries.yml

Check failure

Code scanning / lintrunner

ACTIONLINT/[workflow-call] Error

reusable workflow call ".github/workflows/validate-windows-binaries.yml" at "uses" is not following the format "owner/repo/path/to/workflow.yml@ref" nor "./path/to/workflow.yml". see https://docs.github.com/en/actions/learn-github-actions/reusing-workflows for more details
with:
channel: ${{ inputs.channel }}
torchonly: ${{ inputs.torchonly }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/validate-linux-binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ on:

jobs:
generate-linux-matrix:
uses: ./test-infra/.github/workflows/generate_binary_build_matrix.yml
uses: .github/workflows/generate_binary_build_matrix.yml

Check failure

Code scanning / lintrunner

ACTIONLINT/[workflow-call] Error

reusable workflow call ".github/workflows/generate_binary_build_matrix.yml" at "uses" is not following the format "owner/repo/path/to/workflow.yml@ref" nor "./path/to/workflow.yml". see https://docs.github.com/en/actions/learn-github-actions/reusing-workflows for more details
with:
package-type: wheel,libtorch
os: linux
Expand Down Expand Up @@ -171,9 +171,9 @@ jobs:
${MATRIX_GPU_ARCH_VERSION} == "12.4" && \
${MATRIX_CHANNEL} == "release" && \
${USE_ONLY_DL_PYTORCH_ORG} == "false" ]]; then
source ./test-infra/.github/scripts/validate_pipy.sh
source ./test-infra/.github/scripts/validate_poetry.sh
source .github/scripts/validate_pipy.sh
source .github/scripts/validate_poetry.sh
fi
# Standart case: Validate binaries
source ./test-infra/.github/scripts/validate_binaries.sh
source .github/scripts/validate_binaries.sh
6 changes: 3 additions & 3 deletions .github/workflows/validate-macos-arm64-binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ on:

jobs:
generate-macos-arm64-matrix:
uses: pytorch/test-infra/.github/workflows/generate_binary_build_matrix.yml@main
uses: .github/workflows/generate_binary_build_matrix.yml

Check failure

Code scanning / lintrunner

ACTIONLINT/[workflow-call] Error

reusable workflow call ".github/workflows/generate_binary_build_matrix.yml" at "uses" is not following the format "owner/repo/path/to/workflow.yml@ref" nor "./path/to/workflow.yml". see https://docs.github.com/en/actions/learn-github-actions/reusing-workflows for more details
with:
package-type: wheel,libtorch # We stopped producing conda nightlies
os: macos-arm64
Expand All @@ -108,7 +108,7 @@ jobs:
strategy:
matrix: ${{ fromJson(needs.generate-macos-arm64-matrix.outputs.matrix) }}
fail-fast: false
uses: pytorch/test-infra/.github/workflows/macos_job.yml@main
uses: .github/workflows/macos_job.yml

Check failure

Code scanning / lintrunner

ACTIONLINT/[workflow-call] Error

reusable workflow call ".github/workflows/macos_job.yml" at "uses" is not following the format "owner/repo/path/to/workflow.yml@ref" nor "./path/to/workflow.yml". see https://docs.github.com/en/actions/learn-github-actions/reusing-workflows for more details
name: ${{ matrix.build_name }}
with:
runner: ${{ matrix.validation_runner }}
Expand Down Expand Up @@ -139,4 +139,4 @@ jobs:
fi
printf '%s\n' ${{ toJson(inputs.release-matrix) }} > release_matrix.json
source ./test-infra/.github/scripts/validate_binaries.sh
source .github/scripts/validate_binaries.sh
2 changes: 1 addition & 1 deletion .github/workflows/validate-nightly-binaries.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Scheduled validation of the nightly binaries
name: cron
name: Nightly Binaries Validations

on:
schedule:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate-release-binaries.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Scheduled validation of the release binaries
name: cron
name: Release Binaries Validations

on:
schedule:
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 @@ -96,7 +96,7 @@ on:

jobs:
generate-windows-matrix:
uses: pytorch/test-infra/.github/workflows/generate_binary_build_matrix.yml@main
uses: .github/workflows/generate_binary_build_matrix.yml

Check failure

Code scanning / lintrunner

ACTIONLINT/[workflow-call] Error

reusable workflow call ".github/workflows/generate_binary_build_matrix.yml" at "uses" is not following the format "owner/repo/path/to/workflow.yml@ref" nor "./path/to/workflow.yml". see https://docs.github.com/en/actions/learn-github-actions/reusing-workflows for more details
with:
package-type: wheel,libtorch # We stopped producing conda nightlies
os: windows
Expand All @@ -109,7 +109,7 @@ jobs:
strategy:
matrix: ${{ fromJson(needs.generate-windows-matrix.outputs.matrix) }}
fail-fast: false
uses: pytorch/test-infra/.github/workflows/windows_job.yml@main
uses: .github/workflows/windows_job.yml

Check failure

Code scanning / lintrunner

ACTIONLINT/[workflow-call] Error

reusable workflow call ".github/workflows/windows_job.yml" at "uses" is not following the format "owner/repo/path/to/workflow.yml@ref" nor "./path/to/workflow.yml". see https://docs.github.com/en/actions/learn-github-actions/reusing-workflows for more details
name: ${{ matrix.build_name }}
with:
runner: ${{ matrix.package_type == 'libtorch' && 'windows.4xlarge' || matrix.validation_runner }}
Expand Down Expand Up @@ -141,4 +141,4 @@ jobs:
export CUDA_VERSION=xpu
./windows/internal/xpu_install.bat
fi
source ./test-infra/.github/scripts/validate_binaries.sh
source .github/scripts/validate_binaries.sh

0 comments on commit 68bf71a

Please sign in to comment.