From 8e519a73c2340b376c5fbd56f98210d3074eb54d Mon Sep 17 00:00:00 2001 From: Dmytro Dzhulgakov Date: Mon, 9 Jan 2023 21:41:10 +0000 Subject: [PATCH] [NO COMMIT] Test PR for pytorch/builder#1264 --- .github/templates/common.yml.j2 | 3 +- .../linux_binary_build_workflow.yml.j2 | 2 +- .../macos_binary_build_workflow.yml.j2 | 2 +- .../windows_binary_build_workflow.yml.j2 | 4 +- ...inux-binary-libtorch-cxx11-abi-nightly.yml | 32 +-- ...inux-binary-libtorch-pre-cxx11-nightly.yml | 32 +-- ...nerated-linux-binary-manywheel-nightly.yml | 64 ++--- ...rated-macos-arm64-binary-conda-nightly.yml | 24 +- ...rated-macos-arm64-binary-wheel-nightly.yml | 24 +- .../generated-macos-binary-conda-nightly.yml | 32 +-- ...acos-binary-libtorch-cxx11-abi-nightly.yml | 32 +-- ...acos-binary-libtorch-pre-cxx11-nightly.yml | 32 +-- .../generated-macos-binary-wheel-nightly.yml | 32 +-- ...generated-windows-binary-conda-nightly.yml | 256 +++++++++--------- ...d-windows-binary-libtorch-debug-master.yml | 16 +- ...-windows-binary-libtorch-debug-nightly.yml | 256 +++++++++--------- ...windows-binary-libtorch-release-master.yml | 16 +- ...indows-binary-libtorch-release-nightly.yml | 256 +++++++++--------- ...generated-windows-binary-wheel-nightly.yml | 256 +++++++++--------- 19 files changed, 686 insertions(+), 685 deletions(-) diff --git a/.github/templates/common.yml.j2 b/.github/templates/common.yml.j2 index d341b0a14b5daa..5dee32404bd879 100644 --- a/.github/templates/common.yml.j2 +++ b/.github/templates/common.yml.j2 @@ -7,7 +7,8 @@ # NOTE: If testing pytorch/builder changes you can change this variable to change what pytorch/builder reference # the binary builds will check out -{%- set builder_branch = "main" -%} +{%- set builder_repo = "dzhulgakov/pytorch-builder" -%} +{%- set builder_branch = "better-test-install" -%} {%- macro concurrency(build_environment) -%} concurrency: diff --git a/.github/templates/linux_binary_build_workflow.yml.j2 b/.github/templates/linux_binary_build_workflow.yml.j2 index f9b0cd1b30c0bc..16076b48430565 100644 --- a/.github/templates/linux_binary_build_workflow.yml.j2 +++ b/.github/templates/linux_binary_build_workflow.yml.j2 @@ -88,7 +88,7 @@ jobs: name: !{{ config["build_name"] }} path: "${{ runner.temp }}/artifacts/" !{{ common.checkout(deep_clone=False, directory="pytorch") }} - !{{ common.checkout(deep_clone=False, directory="builder", repository="pytorch/builder", branch=common.builder_branch) }} + !{{ common.checkout(deep_clone=False, directory="builder", repository=common.builder_repo, branch=common.builder_branch) }} - name: ROCm set GPU_FLAG run: | echo "GPU_FLAG=--device=/dev/mem --device=/dev/kfd --device=/dev/dri --group-add video --group-add daemon" >> "${GITHUB_ENV}" diff --git a/.github/templates/macos_binary_build_workflow.yml.j2 b/.github/templates/macos_binary_build_workflow.yml.j2 index eb0c2ff4b37345..aced5fbbcdd238 100644 --- a/.github/templates/macos_binary_build_workflow.yml.j2 +++ b/.github/templates/macos_binary_build_workflow.yml.j2 @@ -75,7 +75,7 @@ jobs: echo "${RUNNER_TEMP}/anaconda/bin" >> "${GITHUB_PATH}" echo "DEVELOPER_DIR=/Applications/Xcode_13.3.1.app/Contents/Developer" >> "${GITHUB_ENV}" !{{ common.checkout(deep_clone=False, directory="pytorch") }} - !{{ common.checkout(deep_clone=False, directory="builder", repository="pytorch/builder", branch=common.builder_branch) }} + !{{ common.checkout(deep_clone=False, directory="builder", repository=common.builder_repo, branch=common.builder_branch) }} - name: Install sccache (only for non-forked PRs, and pushes to trunk) uses: nick-fields/retry@v2.8.2 if: ${{ github.event_name == 'push' || github.event.pull_request.head.repo.full_name == github.repository }} diff --git a/.github/templates/windows_binary_build_workflow.yml.j2 b/.github/templates/windows_binary_build_workflow.yml.j2 index 9f68df06b704f6..be1ef769a4f1ee 100644 --- a/.github/templates/windows_binary_build_workflow.yml.j2 +++ b/.github/templates/windows_binary_build_workflow.yml.j2 @@ -63,7 +63,7 @@ jobs: !{{ common.setup_ec2_windows() }} !{{ set_runner_specific_vars() }} !{{ common.checkout(deep_clone=False, directory="pytorch") }} - !{{ common.checkout(deep_clone=False, directory="builder", repository="pytorch/builder", branch=common.builder_branch) }} + !{{ common.checkout(deep_clone=False, directory="builder", repository=common.builder_repo, branch=common.builder_branch) }} - name: Populate binary env shell: bash run: | @@ -99,7 +99,7 @@ jobs: name: !{{ config["build_name"] }} path: "${{ env.PYTORCH_FINAL_PACKAGE_DIR }}" !{{ common.checkout(deep_clone=False, directory="pytorch") }} - !{{ common.checkout(deep_clone=False, directory="builder", repository="pytorch/builder", branch=common.builder_branch) }} + !{{ common.checkout(deep_clone=False, directory="builder", repository=common.builder_repo, branch=common.builder_branch) }} - name: Populate binary env shell: bash run: | diff --git a/.github/workflows/generated-linux-binary-libtorch-cxx11-abi-nightly.yml b/.github/workflows/generated-linux-binary-libtorch-cxx11-abi-nightly.yml index d016f5d9b52a50..0a3c4c4ce0bf3a 100644 --- a/.github/workflows/generated-linux-binary-libtorch-cxx11-abi-nightly.yml +++ b/.github/workflows/generated-linux-binary-libtorch-cxx11-abi-nightly.yml @@ -1090,15 +1090,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -1194,15 +1194,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -1298,15 +1298,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -1402,15 +1402,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd diff --git a/.github/workflows/generated-linux-binary-libtorch-pre-cxx11-nightly.yml b/.github/workflows/generated-linux-binary-libtorch-pre-cxx11-nightly.yml index e4a1dbad98ef71..cd44b0fe27f555 100644 --- a/.github/workflows/generated-linux-binary-libtorch-pre-cxx11-nightly.yml +++ b/.github/workflows/generated-linux-binary-libtorch-pre-cxx11-nightly.yml @@ -1090,15 +1090,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -1194,15 +1194,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -1298,15 +1298,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -1402,15 +1402,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd diff --git a/.github/workflows/generated-linux-binary-manywheel-nightly.yml b/.github/workflows/generated-linux-binary-manywheel-nightly.yml index 4ab2014e1c5639..1a59bb427816bc 100644 --- a/.github/workflows/generated-linux-binary-manywheel-nightly.yml +++ b/.github/workflows/generated-linux-binary-manywheel-nightly.yml @@ -390,15 +390,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -491,15 +491,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -890,15 +890,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -991,15 +991,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -1390,15 +1390,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -1491,15 +1491,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -1890,15 +1890,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -1991,15 +1991,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd diff --git a/.github/workflows/generated-macos-arm64-binary-conda-nightly.yml b/.github/workflows/generated-macos-arm64-binary-conda-nightly.yml index 609e690a8989a8..3007c89e20bb40 100644 --- a/.github/workflows/generated-macos-arm64-binary-conda-nightly.yml +++ b/.github/workflows/generated-macos-arm64-binary-conda-nightly.yml @@ -84,15 +84,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -196,15 +196,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -308,15 +308,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd diff --git a/.github/workflows/generated-macos-arm64-binary-wheel-nightly.yml b/.github/workflows/generated-macos-arm64-binary-wheel-nightly.yml index eead92dd56df01..bbac33d705c5f3 100644 --- a/.github/workflows/generated-macos-arm64-binary-wheel-nightly.yml +++ b/.github/workflows/generated-macos-arm64-binary-wheel-nightly.yml @@ -84,15 +84,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -196,15 +196,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -308,15 +308,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd diff --git a/.github/workflows/generated-macos-binary-conda-nightly.yml b/.github/workflows/generated-macos-binary-conda-nightly.yml index a1b64c7cb308a9..b63ca92df8d6e3 100644 --- a/.github/workflows/generated-macos-binary-conda-nightly.yml +++ b/.github/workflows/generated-macos-binary-conda-nightly.yml @@ -82,15 +82,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -194,15 +194,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -306,15 +306,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -418,15 +418,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd diff --git a/.github/workflows/generated-macos-binary-libtorch-cxx11-abi-nightly.yml b/.github/workflows/generated-macos-binary-libtorch-cxx11-abi-nightly.yml index 5d65c959fe8a9a..5abbc4c2595276 100644 --- a/.github/workflows/generated-macos-binary-libtorch-cxx11-abi-nightly.yml +++ b/.github/workflows/generated-macos-binary-libtorch-cxx11-abi-nightly.yml @@ -86,15 +86,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -203,15 +203,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -320,15 +320,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -437,15 +437,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd diff --git a/.github/workflows/generated-macos-binary-libtorch-pre-cxx11-nightly.yml b/.github/workflows/generated-macos-binary-libtorch-pre-cxx11-nightly.yml index a874bdf1fe692b..245a8d6737f703 100644 --- a/.github/workflows/generated-macos-binary-libtorch-pre-cxx11-nightly.yml +++ b/.github/workflows/generated-macos-binary-libtorch-pre-cxx11-nightly.yml @@ -86,15 +86,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -203,15 +203,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -320,15 +320,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -437,15 +437,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd diff --git a/.github/workflows/generated-macos-binary-wheel-nightly.yml b/.github/workflows/generated-macos-binary-wheel-nightly.yml index a8427716911504..aa527bc891e102 100644 --- a/.github/workflows/generated-macos-binary-wheel-nightly.yml +++ b/.github/workflows/generated-macos-binary-wheel-nightly.yml @@ -82,15 +82,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -194,15 +194,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -306,15 +306,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -418,15 +418,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd diff --git a/.github/workflows/generated-windows-binary-conda-nightly.yml b/.github/workflows/generated-windows-binary-conda-nightly.yml index bd706aaf978480..504a53472b1613 100644 --- a/.github/workflows/generated-windows-binary-conda-nightly.yml +++ b/.github/workflows/generated-windows-binary-conda-nightly.yml @@ -96,15 +96,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -207,15 +207,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -325,15 +325,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -437,15 +437,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -556,15 +556,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -668,15 +668,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -787,15 +787,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -899,15 +899,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -1017,15 +1017,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -1128,15 +1128,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -1246,15 +1246,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -1358,15 +1358,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -1477,15 +1477,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -1589,15 +1589,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -1708,15 +1708,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -1820,15 +1820,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -1938,15 +1938,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -2049,15 +2049,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -2167,15 +2167,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -2279,15 +2279,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -2398,15 +2398,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -2510,15 +2510,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -2629,15 +2629,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -2741,15 +2741,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -2859,15 +2859,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -2970,15 +2970,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -3088,15 +3088,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -3200,15 +3200,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -3319,15 +3319,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -3431,15 +3431,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -3550,15 +3550,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -3662,15 +3662,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd diff --git a/.github/workflows/generated-windows-binary-libtorch-debug-master.yml b/.github/workflows/generated-windows-binary-libtorch-debug-master.yml index 58816fd3d1ea02..d7c903130b5a78 100644 --- a/.github/workflows/generated-windows-binary-libtorch-debug-master.yml +++ b/.github/workflows/generated-windows-binary-libtorch-debug-master.yml @@ -95,15 +95,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -210,15 +210,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd diff --git a/.github/workflows/generated-windows-binary-libtorch-debug-nightly.yml b/.github/workflows/generated-windows-binary-libtorch-debug-nightly.yml index 603010f83ffdb9..8b7c02509d5892 100644 --- a/.github/workflows/generated-windows-binary-libtorch-debug-nightly.yml +++ b/.github/workflows/generated-windows-binary-libtorch-debug-nightly.yml @@ -100,15 +100,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -215,15 +215,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -340,15 +340,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -455,15 +455,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -580,15 +580,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -695,15 +695,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -820,15 +820,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -935,15 +935,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -1061,15 +1061,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -1177,15 +1177,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -1304,15 +1304,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -1420,15 +1420,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -1547,15 +1547,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -1663,15 +1663,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -1790,15 +1790,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -1906,15 +1906,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -2033,15 +2033,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -2149,15 +2149,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -2276,15 +2276,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -2392,15 +2392,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -2519,15 +2519,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -2635,15 +2635,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -2762,15 +2762,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -2878,15 +2878,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -3005,15 +3005,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -3121,15 +3121,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -3248,15 +3248,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -3364,15 +3364,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -3491,15 +3491,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -3607,15 +3607,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -3734,15 +3734,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -3850,15 +3850,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd diff --git a/.github/workflows/generated-windows-binary-libtorch-release-master.yml b/.github/workflows/generated-windows-binary-libtorch-release-master.yml index 471600e776902b..fe35a3ad7d022b 100644 --- a/.github/workflows/generated-windows-binary-libtorch-release-master.yml +++ b/.github/workflows/generated-windows-binary-libtorch-release-master.yml @@ -95,15 +95,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -210,15 +210,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd diff --git a/.github/workflows/generated-windows-binary-libtorch-release-nightly.yml b/.github/workflows/generated-windows-binary-libtorch-release-nightly.yml index de2615cd866b3d..925792eca3559e 100644 --- a/.github/workflows/generated-windows-binary-libtorch-release-nightly.yml +++ b/.github/workflows/generated-windows-binary-libtorch-release-nightly.yml @@ -100,15 +100,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -215,15 +215,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -340,15 +340,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -455,15 +455,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -580,15 +580,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -695,15 +695,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -820,15 +820,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -935,15 +935,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -1061,15 +1061,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -1177,15 +1177,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -1304,15 +1304,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -1420,15 +1420,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -1547,15 +1547,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -1663,15 +1663,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -1790,15 +1790,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -1906,15 +1906,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -2033,15 +2033,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -2149,15 +2149,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -2276,15 +2276,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -2392,15 +2392,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -2519,15 +2519,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -2635,15 +2635,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -2762,15 +2762,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -2878,15 +2878,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -3005,15 +3005,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -3121,15 +3121,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -3248,15 +3248,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -3364,15 +3364,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -3491,15 +3491,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -3607,15 +3607,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -3734,15 +3734,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -3850,15 +3850,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd diff --git a/.github/workflows/generated-windows-binary-wheel-nightly.yml b/.github/workflows/generated-windows-binary-wheel-nightly.yml index 5b6a453a7dbe6a..523bd13e3dddb1 100644 --- a/.github/workflows/generated-windows-binary-wheel-nightly.yml +++ b/.github/workflows/generated-windows-binary-wheel-nightly.yml @@ -96,15 +96,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -207,15 +207,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -325,15 +325,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -437,15 +437,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -556,15 +556,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -668,15 +668,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -787,15 +787,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -899,15 +899,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -1017,15 +1017,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -1128,15 +1128,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -1246,15 +1246,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -1358,15 +1358,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -1477,15 +1477,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -1589,15 +1589,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -1708,15 +1708,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -1820,15 +1820,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -1938,15 +1938,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -2049,15 +2049,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -2167,15 +2167,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -2279,15 +2279,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -2398,15 +2398,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -2510,15 +2510,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -2629,15 +2629,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -2741,15 +2741,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -2859,15 +2859,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -2970,15 +2970,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -3088,15 +3088,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -3200,15 +3200,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -3319,15 +3319,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -3431,15 +3431,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -3550,15 +3550,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd @@ -3662,15 +3662,15 @@ jobs: # Remove any artifacts from the previous checkouts git clean -fxd working-directory: pytorch - - name: Checkout pytorch/builder + - name: Checkout dzhulgakov/pytorch-builder uses: malfet/checkout@silent-checkout with: - ref: main + ref: better-test-install submodules: recursive - repository: pytorch/builder + repository: dzhulgakov/pytorch-builder path: builder quiet-checkout: true - - name: Clean pytorch/builder checkout + - name: Clean dzhulgakov/pytorch-builder checkout run: | # Remove any artifacts from the previous checkouts git clean -fxd