-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 }} | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
@@ -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 |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
@@ -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 }} | ||
|
@@ -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 |
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: | ||
|
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: | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
@@ -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 }} | ||
|
@@ -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 |