From 64529788fbe1f7aa792fa6bfbb1908df59103c7d Mon Sep 17 00:00:00 2001 From: atalman Date: Wed, 15 Jan 2025 08:44:31 -0800 Subject: [PATCH 1/2] Remove conda build scripts and env variables from Workflows --- .ci/pytorch/check_binary.sh | 2 +- .ci/pytorch/run_tests.sh | 2 +- .ci/pytorch/windows/internal/smoke_test.bat | 55 ------------------- .circleci/scripts/binary_populate_env.sh | 8 +-- .circleci/scripts/binary_upload.sh | 39 +------------ .../linux_binary_build_workflow.yml.j2 | 1 - .../macos_binary_build_workflow.yml.j2 | 2 - .../windows_binary_build_workflow.yml.j2 | 1 - .github/workflows/_binary-build-linux.yml | 3 - .github/workflows/_binary-test-linux.yml | 3 - .github/workflows/_binary-upload.yml | 15 ----- ...linux-aarch64-binary-manywheel-nightly.yml | 1 - ...d-linux-binary-libtorch-cxx11-abi-main.yml | 1 - ...inux-binary-libtorch-cxx11-abi-nightly.yml | 1 - ...d-linux-binary-libtorch-pre-cxx11-main.yml | 1 - ...inux-binary-libtorch-pre-cxx11-nightly.yml | 1 - .../generated-linux-binary-manywheel-main.yml | 1 - ...nerated-linux-binary-manywheel-nightly.yml | 1 - ...d-linux-s390x-binary-manywheel-nightly.yml | 1 - ...rm64-binary-libtorch-cxx11-abi-nightly.yml | 2 - ...rated-macos-arm64-binary-wheel-nightly.yml | 2 - ...ted-windows-binary-libtorch-debug-main.yml | 1 - ...-windows-binary-libtorch-debug-nightly.yml | 1 - ...d-windows-binary-libtorch-release-main.yml | 1 - ...indows-binary-libtorch-release-nightly.yml | 1 - ...generated-windows-binary-wheel-nightly.yml | 1 - 26 files changed, 6 insertions(+), 142 deletions(-) diff --git a/.ci/pytorch/check_binary.sh b/.ci/pytorch/check_binary.sh index 6c7337d0922f5..2eadd6718f8b8 100755 --- a/.ci/pytorch/check_binary.sh +++ b/.ci/pytorch/check_binary.sh @@ -387,7 +387,7 @@ fi ############################################################################### # Check for C++ ABI compatibility between gcc7 and gcc9 compiled binaries ############################################################################### -if [[ "$(uname)" == 'Linux' && ("$PACKAGE_TYPE" == 'conda' || "$PACKAGE_TYPE" == 'manywheel')]]; then +if [[ "$(uname)" == 'Linux' && "$PACKAGE_TYPE" == 'manywheel' ]]; then pushd /tmp python -c "import torch; exit(0 if torch.compiled_with_cxx11_abi() else (0 if torch._C._PYBIND11_BUILD_ABI == '_cxxabi1011' else 1))" popd diff --git a/.ci/pytorch/run_tests.sh b/.ci/pytorch/run_tests.sh index 48b1bdf38db9e..6c1c554688647 100755 --- a/.ci/pytorch/run_tests.sh +++ b/.ci/pytorch/run_tests.sh @@ -40,7 +40,7 @@ retry () { if [[ "$#" != 3 ]]; then if [[ -z "${DESIRED_PYTHON:-}" || -z "${DESIRED_CUDA:-}" || -z "${PACKAGE_TYPE:-}" ]]; then echo "USAGE: run_tests.sh PACKAGE_TYPE DESIRED_PYTHON DESIRED_CUDA" - echo "The env variable PACKAGE_TYPE must be set to 'conda' or 'manywheel' or 'libtorch'" + echo "The env variable PACKAGE_TYPE must be set to 'manywheel' or 'libtorch'" echo "The env variable DESIRED_PYTHON must be set like '2.7mu' or '3.6m' etc" echo "The env variable DESIRED_CUDA must be set like 'cpu' or 'cu80' etc" exit 1 diff --git a/.ci/pytorch/windows/internal/smoke_test.bat b/.ci/pytorch/windows/internal/smoke_test.bat index 7e6498094bde6..414159a39db37 100644 --- a/.ci/pytorch/windows/internal/smoke_test.bat +++ b/.ci/pytorch/windows/internal/smoke_test.bat @@ -27,7 +27,6 @@ for /F "delims=" %%i in ('wmic path win32_VideoController get name') do ( endlocal & set NVIDIA_GPU_EXISTS=%NVIDIA_GPU_EXISTS% if "%PACKAGE_TYPE%" == "wheel" goto wheel -if "%PACKAGE_TYPE%" == "conda" goto conda if "%PACKAGE_TYPE%" == "libtorch" goto libtorch echo "unknown package type" @@ -74,60 +73,6 @@ if errorlevel 1 exit /b 1 goto smoke_test -:conda -echo "install conda package" - -:: Install Miniconda3 -set "CONDA_HOME=%CD%\conda" -set "tmp_conda=%CONDA_HOME%" -set "miniconda_exe=%CD%\miniconda.exe" -set "CONDA_EXTRA_ARGS=cpuonly -c pytorch-nightly" -if "%CUDA_VERSION%" == "118" ( - set "CONDA_EXTRA_ARGS=pytorch-cuda=11.8 -c nvidia -c pytorch-nightly" -) -if "%CUDA_VERSION%" == "121" ( - set "CONDA_EXTRA_ARGS=pytorch-cuda=12.1 -c nvidia -c pytorch-nightly" -) -if "%CUDA_VERSION%" == "124" ( - set "CONDA_EXTRA_ARGS=pytorch-cuda=12.4 -c nvidia -c pytorch-nightly" -) -if "%CUDA_VERSION%" == "126" ( - set "CONDA_EXTRA_ARGS=pytorch-cuda=12.6 -c nvidia -c pytorch-nightly" -) - -rmdir /s /q conda -del miniconda.exe -curl -k https://repo.anaconda.com/miniconda/Miniconda3-latest-Windows-x86_64.exe -o "%miniconda_exe%" -start /wait "" "%miniconda_exe%" /S /InstallationType=JustMe /RegisterPython=0 /AddToPath=0 /D=%tmp_conda% -if ERRORLEVEL 1 exit /b 1 - -set "PATH=%CONDA_HOME%;%CONDA_HOME%\scripts;%CONDA_HOME%\Library\bin;%PATH%" - -conda create -qyn testenv python=%DESIRED_PYTHON% -if errorlevel 1 exit /b 1 -call conda install -yq conda-build -if errorlevel 1 exit /b 1 -call %CONDA_HOME%\condabin\activate.bat testenv -if errorlevel 1 exit /b 1 -set "NO_ARCH_PATH=%PYTORCH_FINAL_PACKAGE_DIR:/=\%\noarch" -mkdir %NO_ARCH_PATH% -for /F "delims=" %%i in ('where /R "%PYTORCH_FINAL_PACKAGE_DIR:/=\%" *') do xcopy "%%i" %NO_ARCH_PATH% /Y -if ERRORLEVEL 1 exit /b 1 -call conda index %PYTORCH_FINAL_PACKAGE_DIR% -if errorlevel 1 exit /b 1 -call conda install -yq -c "file:///%PYTORCH_FINAL_PACKAGE_DIR%" pytorch==%PYTORCH_BUILD_VERSION% -c pytorch -c numba/label/dev -c nvidia -if ERRORLEVEL 1 exit /b 1 -call conda install -yq numpy -if ERRORLEVEL 1 exit /b 1 - -set /a CUDA_VER=%CUDA_VERSION% -set CUDA_VER_MAJOR=%CUDA_VERSION:~0,-1% -set CUDA_VER_MINOR=%CUDA_VERSION:~-1,1% -set CUDA_VERSION_STR=%CUDA_VER_MAJOR%.%CUDA_VER_MINOR% - -:: Install package we just build - - :smoke_test python -c "import torch" if ERRORLEVEL 1 exit /b 1 diff --git a/.circleci/scripts/binary_populate_env.sh b/.circleci/scripts/binary_populate_env.sh index 6167d56dcf7fd..cb6096ae32c4d 100755 --- a/.circleci/scripts/binary_populate_env.sh +++ b/.circleci/scripts/binary_populate_env.sh @@ -30,9 +30,7 @@ fi # Pick docker image export DOCKER_IMAGE=${DOCKER_IMAGE:-} if [[ -z "$DOCKER_IMAGE" ]]; then - if [[ "$PACKAGE_TYPE" == conda ]]; then - export DOCKER_IMAGE="pytorch/conda-cuda" - elif [[ "$DESIRED_CUDA" == cpu ]]; then + if [[ "$DESIRED_CUDA" == cpu ]]; then export DOCKER_IMAGE="pytorch/manylinux:cpu" else export DOCKER_IMAGE="pytorch/manylinux-builder:${DESIRED_CUDA:2}" @@ -63,7 +61,7 @@ if tagged_version >/dev/null; then # Turns tag v1.6.0-rc1 -> v1.6.0 BASE_BUILD_VERSION="$(tagged_version | sed -e 's/^v//' -e 's/-.*$//')" fi -if [[ "$(uname)" == 'Darwin' ]] || [[ "$PACKAGE_TYPE" == conda ]]; then +if [[ "$(uname)" == 'Darwin' ]]; then export PYTORCH_BUILD_VERSION="${BASE_BUILD_VERSION}" else export PYTORCH_BUILD_VERSION="${BASE_BUILD_VERSION}+$DESIRED_CUDA" @@ -149,8 +147,6 @@ export PYTORCH_EXTRA_INSTALL_REQUIREMENTS="${PYTORCH_EXTRA_INSTALL_REQUIREMENTS: # TODO: We don't need this anymore IIUC export TORCH_PACKAGE_NAME='torch' -export TORCH_CONDA_BUILD_FOLDER='pytorch-nightly' -export ANACONDA_USER='pytorch' export USE_FBGEMM=1 export PIP_UPLOAD_FOLDER="$PIP_UPLOAD_FOLDER" diff --git a/.circleci/scripts/binary_upload.sh b/.circleci/scripts/binary_upload.sh index 36461a1b810a1..55b7326a26794 100755 --- a/.circleci/scripts/binary_upload.sh +++ b/.circleci/scripts/binary_upload.sh @@ -2,7 +2,7 @@ set -euo pipefail -PACKAGE_TYPE=${PACKAGE_TYPE:-conda} +PACKAGE_TYPE=${PACKAGE_TYPE:-wheel} PKG_DIR=${PKG_DIR:-/tmp/workspace/final_pkgs} @@ -18,10 +18,8 @@ BUILD_NAME=${BUILD_NAME:-} DRY_RUN=${DRY_RUN:-enabled} # Don't actually do work unless explicit -ANACONDA="true anaconda" AWS_S3_CP="aws s3 cp --dryrun" if [[ "${DRY_RUN}" = "disabled" ]]; then - ANACONDA="anaconda" AWS_S3_CP="aws s3 cp" fi @@ -34,10 +32,6 @@ if [[ ${BUILD_NAME} == *-full* ]]; then UPLOAD_SUBFOLDER="${UPLOAD_SUBFOLDER}_full" fi -# Sleep 2 minutes between retries for conda upload -retry () { - "$@" || (sleep 5m && "$@") || (sleep 5m && "$@") || (sleep 5m && "$@") || (sleep 5m && "$@") -} do_backup() { local backup_dir @@ -49,20 +43,6 @@ do_backup() { ) } -conda_upload() { - ( - set -x - retry \ - ${ANACONDA} \ - upload \ - ${PKG_DIR}/*.tar.bz2 \ - -u "pytorch-${UPLOAD_CHANNEL}" \ - --label main \ - --no-progress \ - --force - ) -} - s3_upload() { local extension local pkg_type @@ -85,24 +65,9 @@ s3_upload() { } # Install dependencies (should be a no-op if previously installed) -conda install -yq anaconda-client -pip install -q awscli +pip install -q awscli uv case "${PACKAGE_TYPE}" in - conda) - conda_upload - for conda_archive in ${PKG_DIR}/*.tar.bz2; do - # Fetch platform (eg. win-64, linux-64, etc.) from index file because - # there's no actual conda command to read this - subdir=$(\ - tar -xOf "${conda_archive}" info/index.json \ - | grep subdir \ - | cut -d ':' -f2 \ - | sed -e 's/[[:space:]]//' -e 's/"//g' -e 's/,//' \ - ) - BACKUP_DIR="conda/${subdir}" - done - ;; libtorch) s3_upload "zip" "libtorch" BACKUP_DIR="libtorch/${UPLOAD_CHANNEL}/${UPLOAD_SUBFOLDER}" diff --git a/.github/templates/linux_binary_build_workflow.yml.j2 b/.github/templates/linux_binary_build_workflow.yml.j2 index 6b8c47333ad9a..1d8f463b2b5c3 100644 --- a/.github/templates/linux_binary_build_workflow.yml.j2 +++ b/.github/templates/linux_binary_build_workflow.yml.j2 @@ -38,7 +38,6 @@ env: {%- else %} ALPINE_IMAGE: "308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine" {%- endif %} - ANACONDA_USER: pytorch AWS_DEFAULT_REGION: us-east-1 BINARY_ENV_FILE: /tmp/env BUILD_ENVIRONMENT: !{{ build_environment }} diff --git a/.github/templates/macos_binary_build_workflow.yml.j2 b/.github/templates/macos_binary_build_workflow.yml.j2 index 8b6cbda710467..d339d1f4e7a9c 100644 --- a/.github/templates/macos_binary_build_workflow.yml.j2 +++ b/.github/templates/macos_binary_build_workflow.yml.j2 @@ -41,9 +41,7 @@ on: workflow_dispatch: env: - # Needed for conda builds ALPINE_IMAGE: "308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine" - ANACONDA_USER: pytorch AWS_DEFAULT_REGION: us-east-1 BUILD_ENVIRONMENT: !{{ build_environment }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/templates/windows_binary_build_workflow.yml.j2 b/.github/templates/windows_binary_build_workflow.yml.j2 index 41fd56e853276..8e9217dca84f5 100644 --- a/.github/templates/windows_binary_build_workflow.yml.j2 +++ b/.github/templates/windows_binary_build_workflow.yml.j2 @@ -43,7 +43,6 @@ on: env: # Needed for conda builds ALPINE_IMAGE: "308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine" - ANACONDA_USER: pytorch AWS_DEFAULT_REGION: us-east-1 BUILD_ENVIRONMENT: !{{ build_environment }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/_binary-build-linux.yml b/.github/workflows/_binary-build-linux.yml index 0bc25dd24398d..c84c5d6e4d6da 100644 --- a/.github/workflows/_binary-build-linux.yml +++ b/.github/workflows/_binary-build-linux.yml @@ -107,9 +107,7 @@ jobs: DESIRED_DEVTOOLSET: ${{ inputs.DESIRED_DEVTOOLSET }} DESIRED_PYTHON: ${{ inputs.DESIRED_PYTHON }} PYTORCH_EXTRA_INSTALL_REQUIREMENTS: ${{ inputs.PYTORCH_EXTRA_INSTALL_REQUIREMENTS }} - # Needed for conda builds ALPINE_IMAGE: ${{ inputs.ALPINE_IMAGE }} - ANACONDA_USER: pytorch AWS_DEFAULT_REGION: us-east-1 BINARY_ENV_FILE: /tmp/env BUILD_ENVIRONMENT: ${{ inputs.build_environment }} @@ -136,7 +134,6 @@ jobs: echo "DESIRED_PYTHON=${{ env.DESIRED_PYTHON }}" echo "PYTORCH_EXTRA_INSTALL_REQUIREMENTS=${{ env.PYTORCH_EXTRA_INSTALL_REQUIREMENTS }}" echo "ALPINE_IMAGE=${{ env.ALPINE_IMAGE }}" - echo "ANACONDA_USER=${{ env.ANACONDA_USER }}" echo "AWS_DEFAULT_REGION=${{ env.AWS_DEFAULT_REGION }}" echo "BINARY_ENV_FILE=${{ env.BINARY_ENV_FILE }}" echo "BUILD_ENVIRONMENT=${{ env.BUILD_ENVIRONMENT }}" diff --git a/.github/workflows/_binary-test-linux.yml b/.github/workflows/_binary-test-linux.yml index dffbc9cba0fb6..09490cc1b9f44 100644 --- a/.github/workflows/_binary-test-linux.yml +++ b/.github/workflows/_binary-test-linux.yml @@ -94,9 +94,7 @@ jobs: LIBTORCH_VARIANT: ${{ inputs.LIBTORCH_VARIANT }} DESIRED_DEVTOOLSET: ${{ inputs.DESIRED_DEVTOOLSET }} DESIRED_PYTHON: ${{ inputs.DESIRED_PYTHON }} - # Needed for conda builds ALPINE_IMAGE: ${{ inputs.ALPINE_IMAGE }} - ANACONDA_USER: pytorch AWS_DEFAULT_REGION: us-east-1 BINARY_ENV_FILE: /tmp/env BUILD_ENVIRONMENT: ${{ inputs.build_environment }} @@ -124,7 +122,6 @@ jobs: echo "DESIRED_PYTHON=${{ env.DESIRED_PYTHON }}" echo "ALPINE_IMAGE=${{ env.ALPINE_IMAGE }}" - echo "ANACONDA_USER=${{ env.ANACONDA_USER }}" echo "AWS_DEFAULT_REGION=${{ env.AWS_DEFAULT_REGION }}" echo "BINARY_ENV_FILE=${{ env.BINARY_ENV_FILE }}" echo "BUILD_ENVIRONMENT=${{ env.BUILD_ENVIRONMENT }}" diff --git a/.github/workflows/_binary-upload.yml b/.github/workflows/_binary-upload.yml index bb0ce0b86eb7b..30ba0c7fe5a2f 100644 --- a/.github/workflows/_binary-upload.yml +++ b/.github/workflows/_binary-upload.yml @@ -62,12 +62,6 @@ on: github-token: required: true description: Github Token - conda-pytorchbot-token: - required: true - description: Conda PyTorchBot token - conda-pytorchbot-token-test: - required: true - description: Conda PyTorchBot token jobs: upload: @@ -89,7 +83,6 @@ jobs: LIBTORCH_VARIANT: ${{ inputs.LIBTORCH_VARIANT }} DESIRED_DEVTOOLSET: ${{ inputs.DESIRED_DEVTOOLSET }} DESIRED_PYTHON: ${{ inputs.DESIRED_PYTHON }} - ANACONDA_USER: pytorch BINARY_ENV_FILE: /tmp/env GITHUB_TOKEN: ${{ secrets.github-token }} PR_NUMBER: ${{ github.event.pull_request.number }} @@ -146,15 +139,7 @@ jobs: env: PKG_DIR: "${{ runner.temp }}/artifacts" UPLOAD_SUBFOLDER: "${{ env.DESIRED_CUDA }}" - # When running these on pull_request events these should be blank - CONDA_PYTORCHBOT_TOKEN: ${{ secrets.conda-pytorchbot-token }} - CONDA_PYTORCHBOT_TOKEN_TEST: ${{ secrets.conda-pytorchbot-token-test }} BUILD_NAME: ${{ inputs.build_name }} run: | set -ex - if [[ "${GITHUB_REF_NAME}" = *-rc[0-9]* ]]; then - export ANACONDA_API_TOKEN="${CONDA_PYTORCHBOT_TOKEN_TEST}" - else - export ANACONDA_API_TOKEN="${CONDA_PYTORCHBOT_TOKEN}" - fi bash .circleci/scripts/binary_upload.sh diff --git a/.github/workflows/generated-linux-aarch64-binary-manywheel-nightly.yml b/.github/workflows/generated-linux-aarch64-binary-manywheel-nightly.yml index 0823e5d6cf2af..5c3af6f42b69d 100644 --- a/.github/workflows/generated-linux-aarch64-binary-manywheel-nightly.yml +++ b/.github/workflows/generated-linux-aarch64-binary-manywheel-nightly.yml @@ -21,7 +21,6 @@ on: env: # Needed for conda builds ALPINE_IMAGE: "arm64v8/alpine" - ANACONDA_USER: pytorch AWS_DEFAULT_REGION: us-east-1 BINARY_ENV_FILE: /tmp/env BUILD_ENVIRONMENT: linux-aarch64-binary-manywheel diff --git a/.github/workflows/generated-linux-binary-libtorch-cxx11-abi-main.yml b/.github/workflows/generated-linux-binary-libtorch-cxx11-abi-main.yml index e31fddf04b579..e7c02fe34a88f 100644 --- a/.github/workflows/generated-linux-binary-libtorch-cxx11-abi-main.yml +++ b/.github/workflows/generated-linux-binary-libtorch-cxx11-abi-main.yml @@ -16,7 +16,6 @@ on: env: # Needed for conda builds ALPINE_IMAGE: "308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine" - ANACONDA_USER: pytorch AWS_DEFAULT_REGION: us-east-1 BINARY_ENV_FILE: /tmp/env BUILD_ENVIRONMENT: linux-binary-libtorch-cxx11-abi 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 74f1360184111..172f5f12ec508 100644 --- a/.github/workflows/generated-linux-binary-libtorch-cxx11-abi-nightly.yml +++ b/.github/workflows/generated-linux-binary-libtorch-cxx11-abi-nightly.yml @@ -21,7 +21,6 @@ on: env: # Needed for conda builds ALPINE_IMAGE: "308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine" - ANACONDA_USER: pytorch AWS_DEFAULT_REGION: us-east-1 BINARY_ENV_FILE: /tmp/env BUILD_ENVIRONMENT: linux-binary-libtorch-cxx11-abi diff --git a/.github/workflows/generated-linux-binary-libtorch-pre-cxx11-main.yml b/.github/workflows/generated-linux-binary-libtorch-pre-cxx11-main.yml index 9d36d39ecc197..4304462846a4b 100644 --- a/.github/workflows/generated-linux-binary-libtorch-pre-cxx11-main.yml +++ b/.github/workflows/generated-linux-binary-libtorch-pre-cxx11-main.yml @@ -16,7 +16,6 @@ on: env: # Needed for conda builds ALPINE_IMAGE: "308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine" - ANACONDA_USER: pytorch AWS_DEFAULT_REGION: us-east-1 BINARY_ENV_FILE: /tmp/env BUILD_ENVIRONMENT: linux-binary-libtorch-pre-cxx11 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 b198401c59be6..44c92f18092dc 100644 --- a/.github/workflows/generated-linux-binary-libtorch-pre-cxx11-nightly.yml +++ b/.github/workflows/generated-linux-binary-libtorch-pre-cxx11-nightly.yml @@ -21,7 +21,6 @@ on: env: # Needed for conda builds ALPINE_IMAGE: "308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine" - ANACONDA_USER: pytorch AWS_DEFAULT_REGION: us-east-1 BINARY_ENV_FILE: /tmp/env BUILD_ENVIRONMENT: linux-binary-libtorch-pre-cxx11 diff --git a/.github/workflows/generated-linux-binary-manywheel-main.yml b/.github/workflows/generated-linux-binary-manywheel-main.yml index a6e26141f9039..2b4303e10c193 100644 --- a/.github/workflows/generated-linux-binary-manywheel-main.yml +++ b/.github/workflows/generated-linux-binary-manywheel-main.yml @@ -16,7 +16,6 @@ on: env: # Needed for conda builds ALPINE_IMAGE: "308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine" - ANACONDA_USER: pytorch AWS_DEFAULT_REGION: us-east-1 BINARY_ENV_FILE: /tmp/env BUILD_ENVIRONMENT: linux-binary-manywheel diff --git a/.github/workflows/generated-linux-binary-manywheel-nightly.yml b/.github/workflows/generated-linux-binary-manywheel-nightly.yml index 27286ccab9236..17b7acaaf8c56 100644 --- a/.github/workflows/generated-linux-binary-manywheel-nightly.yml +++ b/.github/workflows/generated-linux-binary-manywheel-nightly.yml @@ -21,7 +21,6 @@ on: env: # Needed for conda builds ALPINE_IMAGE: "308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine" - ANACONDA_USER: pytorch AWS_DEFAULT_REGION: us-east-1 BINARY_ENV_FILE: /tmp/env BUILD_ENVIRONMENT: linux-binary-manywheel diff --git a/.github/workflows/generated-linux-s390x-binary-manywheel-nightly.yml b/.github/workflows/generated-linux-s390x-binary-manywheel-nightly.yml index 144337f9c1009..5d5cfacb04be8 100644 --- a/.github/workflows/generated-linux-s390x-binary-manywheel-nightly.yml +++ b/.github/workflows/generated-linux-s390x-binary-manywheel-nightly.yml @@ -21,7 +21,6 @@ on: env: # Needed for conda builds ALPINE_IMAGE: "docker.io/s390x/alpine" - ANACONDA_USER: pytorch AWS_DEFAULT_REGION: us-east-1 BINARY_ENV_FILE: /tmp/env BUILD_ENVIRONMENT: linux-s390x-binary-manywheel diff --git a/.github/workflows/generated-macos-arm64-binary-libtorch-cxx11-abi-nightly.yml b/.github/workflows/generated-macos-arm64-binary-libtorch-cxx11-abi-nightly.yml index ebc70aaf85429..c9ae971415e9b 100644 --- a/.github/workflows/generated-macos-arm64-binary-libtorch-cxx11-abi-nightly.yml +++ b/.github/workflows/generated-macos-arm64-binary-libtorch-cxx11-abi-nightly.yml @@ -19,9 +19,7 @@ on: workflow_dispatch: env: - # Needed for conda builds ALPINE_IMAGE: "308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine" - ANACONDA_USER: pytorch AWS_DEFAULT_REGION: us-east-1 BUILD_ENVIRONMENT: macos-arm64-binary-libtorch-cxx11-abi GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/generated-macos-arm64-binary-wheel-nightly.yml b/.github/workflows/generated-macos-arm64-binary-wheel-nightly.yml index 1a1f765a089da..9ced6495a93b7 100644 --- a/.github/workflows/generated-macos-arm64-binary-wheel-nightly.yml +++ b/.github/workflows/generated-macos-arm64-binary-wheel-nightly.yml @@ -19,9 +19,7 @@ on: workflow_dispatch: env: - # Needed for conda builds ALPINE_IMAGE: "308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine" - ANACONDA_USER: pytorch AWS_DEFAULT_REGION: us-east-1 BUILD_ENVIRONMENT: macos-arm64-binary-wheel GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/generated-windows-binary-libtorch-debug-main.yml b/.github/workflows/generated-windows-binary-libtorch-debug-main.yml index 01a8b0aa2e738..360014896b3e5 100644 --- a/.github/workflows/generated-windows-binary-libtorch-debug-main.yml +++ b/.github/workflows/generated-windows-binary-libtorch-debug-main.yml @@ -13,7 +13,6 @@ on: env: # Needed for conda builds ALPINE_IMAGE: "308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine" - ANACONDA_USER: pytorch AWS_DEFAULT_REGION: us-east-1 BUILD_ENVIRONMENT: windows-binary-libtorch-debug GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/generated-windows-binary-libtorch-debug-nightly.yml b/.github/workflows/generated-windows-binary-libtorch-debug-nightly.yml index f107e4868cc9a..b0c326c0a142a 100644 --- a/.github/workflows/generated-windows-binary-libtorch-debug-nightly.yml +++ b/.github/workflows/generated-windows-binary-libtorch-debug-nightly.yml @@ -20,7 +20,6 @@ on: env: # Needed for conda builds ALPINE_IMAGE: "308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine" - ANACONDA_USER: pytorch AWS_DEFAULT_REGION: us-east-1 BUILD_ENVIRONMENT: windows-binary-libtorch-debug GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/generated-windows-binary-libtorch-release-main.yml b/.github/workflows/generated-windows-binary-libtorch-release-main.yml index f34860ecebaaf..d3218eae0ec98 100644 --- a/.github/workflows/generated-windows-binary-libtorch-release-main.yml +++ b/.github/workflows/generated-windows-binary-libtorch-release-main.yml @@ -13,7 +13,6 @@ on: env: # Needed for conda builds ALPINE_IMAGE: "308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine" - ANACONDA_USER: pytorch AWS_DEFAULT_REGION: us-east-1 BUILD_ENVIRONMENT: windows-binary-libtorch-release GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/generated-windows-binary-libtorch-release-nightly.yml b/.github/workflows/generated-windows-binary-libtorch-release-nightly.yml index 0ad09917d2ce1..990c3f3461974 100644 --- a/.github/workflows/generated-windows-binary-libtorch-release-nightly.yml +++ b/.github/workflows/generated-windows-binary-libtorch-release-nightly.yml @@ -20,7 +20,6 @@ on: env: # Needed for conda builds ALPINE_IMAGE: "308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine" - ANACONDA_USER: pytorch AWS_DEFAULT_REGION: us-east-1 BUILD_ENVIRONMENT: windows-binary-libtorch-release GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/generated-windows-binary-wheel-nightly.yml b/.github/workflows/generated-windows-binary-wheel-nightly.yml index 9865fd198e34b..bad9887495cf5 100644 --- a/.github/workflows/generated-windows-binary-wheel-nightly.yml +++ b/.github/workflows/generated-windows-binary-wheel-nightly.yml @@ -20,7 +20,6 @@ on: env: # Needed for conda builds ALPINE_IMAGE: "308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine" - ANACONDA_USER: pytorch AWS_DEFAULT_REGION: us-east-1 BUILD_ENVIRONMENT: windows-binary-wheel GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} From 67c96a5f0d65134563c04a204fb8cce5d6ac4188 Mon Sep 17 00:00:00 2001 From: atalman Date: Wed, 15 Jan 2025 15:39:25 -0800 Subject: [PATCH 2/2] fix --- .github/templates/upload.yml.j2 | 2 - ...linux-aarch64-binary-manywheel-nightly.yml | 24 ----- ...inux-binary-libtorch-cxx11-abi-nightly.yml | 12 --- ...inux-binary-libtorch-pre-cxx11-nightly.yml | 8 -- ...nerated-linux-binary-manywheel-nightly.yml | 96 ------------------- ...d-linux-s390x-binary-manywheel-nightly.yml | 10 -- ...rm64-binary-libtorch-cxx11-abi-nightly.yml | 2 - ...rated-macos-arm64-binary-wheel-nightly.yml | 10 -- ...-windows-binary-libtorch-debug-nightly.yml | 8 -- ...indows-binary-libtorch-release-nightly.yml | 8 -- ...generated-windows-binary-wheel-nightly.yml | 50 ---------- 11 files changed, 230 deletions(-) diff --git a/.github/templates/upload.yml.j2 b/.github/templates/upload.yml.j2 index b092a195ad086..9190ef7deb88a 100644 --- a/.github/templates/upload.yml.j2 +++ b/.github/templates/upload.yml.j2 @@ -74,7 +74,5 @@ {%- endif %} secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml {%- endmacro %} diff --git a/.github/workflows/generated-linux-aarch64-binary-manywheel-nightly.yml b/.github/workflows/generated-linux-aarch64-binary-manywheel-nightly.yml index 5c3af6f42b69d..aba45c33620ed 100644 --- a/.github/workflows/generated-linux-aarch64-binary-manywheel-nightly.yml +++ b/.github/workflows/generated-linux-aarch64-binary-manywheel-nightly.yml @@ -111,8 +111,6 @@ jobs: build_name: manywheel-py3_9-cpu-aarch64 secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml manywheel-py3_9-cuda-aarch64-build: @@ -158,8 +156,6 @@ jobs: build_name: manywheel-py3_9-cuda-aarch64 secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml manywheel-py3_10-cpu-aarch64-build: @@ -229,8 +225,6 @@ jobs: build_name: manywheel-py3_10-cpu-aarch64 secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml manywheel-py3_10-cuda-aarch64-build: @@ -276,8 +270,6 @@ jobs: build_name: manywheel-py3_10-cuda-aarch64 secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml manywheel-py3_11-cpu-aarch64-build: @@ -347,8 +339,6 @@ jobs: build_name: manywheel-py3_11-cpu-aarch64 secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml manywheel-py3_11-cuda-aarch64-build: @@ -394,8 +384,6 @@ jobs: build_name: manywheel-py3_11-cuda-aarch64 secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml manywheel-py3_12-cpu-aarch64-build: @@ -465,8 +453,6 @@ jobs: build_name: manywheel-py3_12-cpu-aarch64 secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml manywheel-py3_12-cuda-aarch64-build: @@ -512,8 +498,6 @@ jobs: build_name: manywheel-py3_12-cuda-aarch64 secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml manywheel-py3_13-cpu-aarch64-build: @@ -583,8 +567,6 @@ jobs: build_name: manywheel-py3_13-cpu-aarch64 secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml manywheel-py3_13-cuda-aarch64-build: @@ -630,8 +612,6 @@ jobs: build_name: manywheel-py3_13-cuda-aarch64 secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml manywheel-py3_13t-cpu-aarch64-build: @@ -701,8 +681,6 @@ jobs: build_name: manywheel-py3_13t-cpu-aarch64 secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml manywheel-py3_13t-cuda-aarch64-build: @@ -748,6 +726,4 @@ jobs: build_name: manywheel-py3_13t-cuda-aarch64 secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml 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 172f5f12ec508..415e0a0645e45 100644 --- a/.github/workflows/generated-linux-binary-libtorch-cxx11-abi-nightly.yml +++ b/.github/workflows/generated-linux-binary-libtorch-cxx11-abi-nightly.yml @@ -104,8 +104,6 @@ jobs: build_name: libtorch-cpu-shared-with-deps-cxx11-abi secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml libtorch-cuda11_8-shared-with-deps-cxx11-abi-build: @@ -171,8 +169,6 @@ jobs: build_name: libtorch-cuda11_8-shared-with-deps-cxx11-abi secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml libtorch-cuda12_4-shared-with-deps-cxx11-abi-build: @@ -238,8 +234,6 @@ jobs: build_name: libtorch-cuda12_4-shared-with-deps-cxx11-abi secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml libtorch-cuda12_6-shared-with-deps-cxx11-abi-build: @@ -305,8 +299,6 @@ jobs: build_name: libtorch-cuda12_6-shared-with-deps-cxx11-abi secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml libtorch-rocm6_2_4-shared-with-deps-cxx11-abi-build: @@ -399,8 +391,6 @@ jobs: build_name: libtorch-rocm6_2_4-shared-with-deps-cxx11-abi secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml libtorch-rocm6_3-shared-with-deps-cxx11-abi-build: @@ -493,6 +483,4 @@ jobs: build_name: libtorch-rocm6_3-shared-with-deps-cxx11-abi secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml 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 44c92f18092dc..b795cd71497f5 100644 --- a/.github/workflows/generated-linux-binary-libtorch-pre-cxx11-nightly.yml +++ b/.github/workflows/generated-linux-binary-libtorch-pre-cxx11-nightly.yml @@ -104,8 +104,6 @@ jobs: build_name: libtorch-cpu-shared-with-deps-pre-cxx11 secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml libtorch-cuda11_8-shared-with-deps-pre-cxx11-build: @@ -171,8 +169,6 @@ jobs: build_name: libtorch-cuda11_8-shared-with-deps-pre-cxx11 secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml libtorch-cuda12_4-shared-with-deps-pre-cxx11-build: @@ -238,8 +234,6 @@ jobs: build_name: libtorch-cuda12_4-shared-with-deps-pre-cxx11 secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml libtorch-cuda12_6-shared-with-deps-pre-cxx11-build: @@ -305,6 +299,4 @@ jobs: build_name: libtorch-cuda12_6-shared-with-deps-pre-cxx11 secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml diff --git a/.github/workflows/generated-linux-binary-manywheel-nightly.yml b/.github/workflows/generated-linux-binary-manywheel-nightly.yml index 17b7acaaf8c56..bbbfe41c63908 100644 --- a/.github/workflows/generated-linux-binary-manywheel-nightly.yml +++ b/.github/workflows/generated-linux-binary-manywheel-nightly.yml @@ -107,8 +107,6 @@ jobs: build_name: manywheel-py3_9-cpu secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml manywheel-py3_9-cpu-cxx11-abi-build: @@ -174,8 +172,6 @@ jobs: build_name: manywheel-py3_9-cpu-cxx11-abi secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml manywheel-py3_9-cuda11_8-build: @@ -245,8 +241,6 @@ jobs: build_name: manywheel-py3_9-cuda11_8 secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml manywheel-py3_9-cuda12_4-build: @@ -316,8 +310,6 @@ jobs: build_name: manywheel-py3_9-cuda12_4 secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml manywheel-py3_9-cuda12_6-build: @@ -387,8 +379,6 @@ jobs: build_name: manywheel-py3_9-cuda12_6 secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml manywheel-py3_9-rocm6_2_4-build: @@ -484,8 +474,6 @@ jobs: build_name: manywheel-py3_9-rocm6_2_4 secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml manywheel-py3_9-rocm6_3-build: @@ -581,8 +569,6 @@ jobs: build_name: manywheel-py3_9-rocm6_3 secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml manywheel-py3_9-xpu-build: @@ -685,8 +671,6 @@ jobs: build_name: manywheel-py3_9-xpu secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml manywheel-py3_10-cpu-build: @@ -752,8 +736,6 @@ jobs: build_name: manywheel-py3_10-cpu secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml manywheel-py3_10-cpu-cxx11-abi-build: @@ -819,8 +801,6 @@ jobs: build_name: manywheel-py3_10-cpu-cxx11-abi secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml manywheel-py3_10-cuda11_8-build: @@ -890,8 +870,6 @@ jobs: build_name: manywheel-py3_10-cuda11_8 secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml manywheel-py3_10-cuda12_4-build: @@ -961,8 +939,6 @@ jobs: build_name: manywheel-py3_10-cuda12_4 secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml manywheel-py3_10-cuda12_6-build: @@ -1032,8 +1008,6 @@ jobs: build_name: manywheel-py3_10-cuda12_6 secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml manywheel-py3_10-rocm6_2_4-build: @@ -1129,8 +1103,6 @@ jobs: build_name: manywheel-py3_10-rocm6_2_4 secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml manywheel-py3_10-rocm6_3-build: @@ -1226,8 +1198,6 @@ jobs: build_name: manywheel-py3_10-rocm6_3 secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml manywheel-py3_10-xpu-build: @@ -1330,8 +1300,6 @@ jobs: build_name: manywheel-py3_10-xpu secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml manywheel-py3_11-cpu-build: @@ -1397,8 +1365,6 @@ jobs: build_name: manywheel-py3_11-cpu secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml manywheel-py3_11-cpu-cxx11-abi-build: @@ -1464,8 +1430,6 @@ jobs: build_name: manywheel-py3_11-cpu-cxx11-abi secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml manywheel-py3_11-cuda11_8-build: @@ -1535,8 +1499,6 @@ jobs: build_name: manywheel-py3_11-cuda11_8 secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml manywheel-py3_11-cuda12_4-build: @@ -1606,8 +1568,6 @@ jobs: build_name: manywheel-py3_11-cuda12_4 secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml manywheel-py3_11-cuda12_4-full-build: @@ -1673,8 +1633,6 @@ jobs: build_name: manywheel-py3_11-cuda12_4-full secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml manywheel-py3_11-cuda12_6-build: @@ -1744,8 +1702,6 @@ jobs: build_name: manywheel-py3_11-cuda12_6 secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml manywheel-py3_11-rocm6_2_4-build: @@ -1841,8 +1797,6 @@ jobs: build_name: manywheel-py3_11-rocm6_2_4 secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml manywheel-py3_11-rocm6_3-build: @@ -1938,8 +1892,6 @@ jobs: build_name: manywheel-py3_11-rocm6_3 secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml manywheel-py3_11-xpu-build: @@ -2042,8 +1994,6 @@ jobs: build_name: manywheel-py3_11-xpu secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml manywheel-py3_12-cpu-build: @@ -2109,8 +2059,6 @@ jobs: build_name: manywheel-py3_12-cpu secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml manywheel-py3_12-cpu-cxx11-abi-build: @@ -2176,8 +2124,6 @@ jobs: build_name: manywheel-py3_12-cpu-cxx11-abi secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml manywheel-py3_12-cuda11_8-build: @@ -2247,8 +2193,6 @@ jobs: build_name: manywheel-py3_12-cuda11_8 secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml manywheel-py3_12-cuda12_4-build: @@ -2318,8 +2262,6 @@ jobs: build_name: manywheel-py3_12-cuda12_4 secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml manywheel-py3_12-cuda12_6-build: @@ -2389,8 +2331,6 @@ jobs: build_name: manywheel-py3_12-cuda12_6 secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml manywheel-py3_12-rocm6_2_4-build: @@ -2486,8 +2426,6 @@ jobs: build_name: manywheel-py3_12-rocm6_2_4 secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml manywheel-py3_12-rocm6_3-build: @@ -2583,8 +2521,6 @@ jobs: build_name: manywheel-py3_12-rocm6_3 secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml manywheel-py3_12-xpu-build: @@ -2687,8 +2623,6 @@ jobs: build_name: manywheel-py3_12-xpu secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml manywheel-py3_13-cpu-build: @@ -2754,8 +2688,6 @@ jobs: build_name: manywheel-py3_13-cpu secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml manywheel-py3_13-cpu-cxx11-abi-build: @@ -2821,8 +2753,6 @@ jobs: build_name: manywheel-py3_13-cpu-cxx11-abi secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml manywheel-py3_13-cuda11_8-build: @@ -2892,8 +2822,6 @@ jobs: build_name: manywheel-py3_13-cuda11_8 secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml manywheel-py3_13-cuda12_4-build: @@ -2963,8 +2891,6 @@ jobs: build_name: manywheel-py3_13-cuda12_4 secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml manywheel-py3_13-cuda12_6-build: @@ -3034,8 +2960,6 @@ jobs: build_name: manywheel-py3_13-cuda12_6 secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml manywheel-py3_13-rocm6_2_4-build: @@ -3131,8 +3055,6 @@ jobs: build_name: manywheel-py3_13-rocm6_2_4 secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml manywheel-py3_13-rocm6_3-build: @@ -3228,8 +3150,6 @@ jobs: build_name: manywheel-py3_13-rocm6_3 secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml manywheel-py3_13-xpu-build: @@ -3332,8 +3252,6 @@ jobs: build_name: manywheel-py3_13-xpu secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml manywheel-py3_13t-cpu-build: @@ -3399,8 +3317,6 @@ jobs: build_name: manywheel-py3_13t-cpu secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml manywheel-py3_13t-cpu-cxx11-abi-build: @@ -3466,8 +3382,6 @@ jobs: build_name: manywheel-py3_13t-cpu-cxx11-abi secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml manywheel-py3_13t-cuda11_8-build: @@ -3537,8 +3451,6 @@ jobs: build_name: manywheel-py3_13t-cuda11_8 secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml manywheel-py3_13t-cuda12_4-build: @@ -3608,8 +3520,6 @@ jobs: build_name: manywheel-py3_13t-cuda12_4 secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml manywheel-py3_13t-cuda12_6-build: @@ -3679,8 +3589,6 @@ jobs: build_name: manywheel-py3_13t-cuda12_6 secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml manywheel-py3_13t-rocm6_2_4-build: @@ -3776,8 +3684,6 @@ jobs: build_name: manywheel-py3_13t-rocm6_2_4 secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml manywheel-py3_13t-rocm6_3-build: @@ -3873,6 +3779,4 @@ jobs: build_name: manywheel-py3_13t-rocm6_3 secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml diff --git a/.github/workflows/generated-linux-s390x-binary-manywheel-nightly.yml b/.github/workflows/generated-linux-s390x-binary-manywheel-nightly.yml index 5d5cfacb04be8..0231bc61bc1e4 100644 --- a/.github/workflows/generated-linux-s390x-binary-manywheel-nightly.yml +++ b/.github/workflows/generated-linux-s390x-binary-manywheel-nightly.yml @@ -106,8 +106,6 @@ jobs: build_name: manywheel-py3_9-cpu-s390x secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml manywheel-py3_10-cpu-s390x-build: @@ -172,8 +170,6 @@ jobs: build_name: manywheel-py3_10-cpu-s390x secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml manywheel-py3_11-cpu-s390x-build: @@ -238,8 +234,6 @@ jobs: build_name: manywheel-py3_11-cpu-s390x secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml manywheel-py3_12-cpu-s390x-build: @@ -304,8 +298,6 @@ jobs: build_name: manywheel-py3_12-cpu-s390x secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml manywheel-py3_13-cpu-s390x-build: @@ -370,6 +362,4 @@ jobs: build_name: manywheel-py3_13-cpu-s390x secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml diff --git a/.github/workflows/generated-macos-arm64-binary-libtorch-cxx11-abi-nightly.yml b/.github/workflows/generated-macos-arm64-binary-libtorch-cxx11-abi-nightly.yml index c9ae971415e9b..4d92b58612c31 100644 --- a/.github/workflows/generated-macos-arm64-binary-libtorch-cxx11-abi-nightly.yml +++ b/.github/workflows/generated-macos-arm64-binary-libtorch-cxx11-abi-nightly.yml @@ -133,6 +133,4 @@ jobs: use_s3: False secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml diff --git a/.github/workflows/generated-macos-arm64-binary-wheel-nightly.yml b/.github/workflows/generated-macos-arm64-binary-wheel-nightly.yml index 9ced6495a93b7..23a6ca2c25e2f 100644 --- a/.github/workflows/generated-macos-arm64-binary-wheel-nightly.yml +++ b/.github/workflows/generated-macos-arm64-binary-wheel-nightly.yml @@ -145,8 +145,6 @@ jobs: use_s3: False secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml wheel-py3_10-cpu-build: if: ${{ github.repository_owner == 'pytorch' }} @@ -263,8 +261,6 @@ jobs: use_s3: False secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml wheel-py3_11-cpu-build: if: ${{ github.repository_owner == 'pytorch' }} @@ -381,8 +377,6 @@ jobs: use_s3: False secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml wheel-py3_12-cpu-build: if: ${{ github.repository_owner == 'pytorch' }} @@ -499,8 +493,6 @@ jobs: use_s3: False secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml wheel-py3_13-cpu-build: if: ${{ github.repository_owner == 'pytorch' }} @@ -617,6 +609,4 @@ jobs: use_s3: False secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml diff --git a/.github/workflows/generated-windows-binary-libtorch-debug-nightly.yml b/.github/workflows/generated-windows-binary-libtorch-debug-nightly.yml index b0c326c0a142a..5323faabad183 100644 --- a/.github/workflows/generated-windows-binary-libtorch-debug-nightly.yml +++ b/.github/workflows/generated-windows-binary-libtorch-debug-nightly.yml @@ -285,8 +285,6 @@ jobs: build_name: libtorch-cpu-shared-with-deps-debug secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml libtorch-cuda11_8-shared-with-deps-debug-build: if: ${{ github.repository_owner == 'pytorch' }} @@ -536,8 +534,6 @@ jobs: build_name: libtorch-cuda11_8-shared-with-deps-debug secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml libtorch-cuda12_4-shared-with-deps-debug-build: if: ${{ github.repository_owner == 'pytorch' }} @@ -787,8 +783,6 @@ jobs: build_name: libtorch-cuda12_4-shared-with-deps-debug secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml libtorch-cuda12_6-shared-with-deps-debug-build: if: ${{ github.repository_owner == 'pytorch' }} @@ -1038,6 +1032,4 @@ jobs: build_name: libtorch-cuda12_6-shared-with-deps-debug secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml diff --git a/.github/workflows/generated-windows-binary-libtorch-release-nightly.yml b/.github/workflows/generated-windows-binary-libtorch-release-nightly.yml index 990c3f3461974..d7f6d3e471358 100644 --- a/.github/workflows/generated-windows-binary-libtorch-release-nightly.yml +++ b/.github/workflows/generated-windows-binary-libtorch-release-nightly.yml @@ -285,8 +285,6 @@ jobs: build_name: libtorch-cpu-shared-with-deps-release secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml libtorch-cuda11_8-shared-with-deps-release-build: if: ${{ github.repository_owner == 'pytorch' }} @@ -536,8 +534,6 @@ jobs: build_name: libtorch-cuda11_8-shared-with-deps-release secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml libtorch-cuda12_4-shared-with-deps-release-build: if: ${{ github.repository_owner == 'pytorch' }} @@ -787,8 +783,6 @@ jobs: build_name: libtorch-cuda12_4-shared-with-deps-release secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml libtorch-cuda12_6-shared-with-deps-release-build: if: ${{ github.repository_owner == 'pytorch' }} @@ -1038,6 +1032,4 @@ jobs: build_name: libtorch-cuda12_6-shared-with-deps-release secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml diff --git a/.github/workflows/generated-windows-binary-wheel-nightly.yml b/.github/workflows/generated-windows-binary-wheel-nightly.yml index bad9887495cf5..1600b0c572f84 100644 --- a/.github/workflows/generated-windows-binary-wheel-nightly.yml +++ b/.github/workflows/generated-windows-binary-wheel-nightly.yml @@ -274,8 +274,6 @@ jobs: build_name: wheel-py3_9-cpu secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml wheel-py3_9-cuda11_8-build: if: ${{ github.repository_owner == 'pytorch' }} @@ -514,8 +512,6 @@ jobs: build_name: wheel-py3_9-cuda11_8 secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml wheel-py3_9-cuda12_4-build: if: ${{ github.repository_owner == 'pytorch' }} @@ -754,8 +750,6 @@ jobs: build_name: wheel-py3_9-cuda12_4 secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml wheel-py3_9-cuda12_6-build: if: ${{ github.repository_owner == 'pytorch' }} @@ -994,8 +988,6 @@ jobs: build_name: wheel-py3_9-cuda12_6 secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml wheel-py3_9-xpu-build: if: ${{ github.repository_owner == 'pytorch' }} @@ -1231,8 +1223,6 @@ jobs: build_name: wheel-py3_9-xpu secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml wheel-py3_10-cpu-build: if: ${{ github.repository_owner == 'pytorch' }} @@ -1468,8 +1458,6 @@ jobs: build_name: wheel-py3_10-cpu secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml wheel-py3_10-cuda11_8-build: if: ${{ github.repository_owner == 'pytorch' }} @@ -1708,8 +1696,6 @@ jobs: build_name: wheel-py3_10-cuda11_8 secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml wheel-py3_10-cuda12_4-build: if: ${{ github.repository_owner == 'pytorch' }} @@ -1948,8 +1934,6 @@ jobs: build_name: wheel-py3_10-cuda12_4 secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml wheel-py3_10-cuda12_6-build: if: ${{ github.repository_owner == 'pytorch' }} @@ -2188,8 +2172,6 @@ jobs: build_name: wheel-py3_10-cuda12_6 secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml wheel-py3_10-xpu-build: if: ${{ github.repository_owner == 'pytorch' }} @@ -2425,8 +2407,6 @@ jobs: build_name: wheel-py3_10-xpu secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml wheel-py3_11-cpu-build: if: ${{ github.repository_owner == 'pytorch' }} @@ -2662,8 +2642,6 @@ jobs: build_name: wheel-py3_11-cpu secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml wheel-py3_11-cuda11_8-build: if: ${{ github.repository_owner == 'pytorch' }} @@ -2902,8 +2880,6 @@ jobs: build_name: wheel-py3_11-cuda11_8 secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml wheel-py3_11-cuda12_4-build: if: ${{ github.repository_owner == 'pytorch' }} @@ -3142,8 +3118,6 @@ jobs: build_name: wheel-py3_11-cuda12_4 secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml wheel-py3_11-cuda12_6-build: if: ${{ github.repository_owner == 'pytorch' }} @@ -3382,8 +3356,6 @@ jobs: build_name: wheel-py3_11-cuda12_6 secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml wheel-py3_11-xpu-build: if: ${{ github.repository_owner == 'pytorch' }} @@ -3619,8 +3591,6 @@ jobs: build_name: wheel-py3_11-xpu secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml wheel-py3_12-cpu-build: if: ${{ github.repository_owner == 'pytorch' }} @@ -3856,8 +3826,6 @@ jobs: build_name: wheel-py3_12-cpu secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml wheel-py3_12-cuda11_8-build: if: ${{ github.repository_owner == 'pytorch' }} @@ -4096,8 +4064,6 @@ jobs: build_name: wheel-py3_12-cuda11_8 secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml wheel-py3_12-cuda12_4-build: if: ${{ github.repository_owner == 'pytorch' }} @@ -4336,8 +4302,6 @@ jobs: build_name: wheel-py3_12-cuda12_4 secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml wheel-py3_12-cuda12_6-build: if: ${{ github.repository_owner == 'pytorch' }} @@ -4576,8 +4540,6 @@ jobs: build_name: wheel-py3_12-cuda12_6 secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml wheel-py3_12-xpu-build: if: ${{ github.repository_owner == 'pytorch' }} @@ -4813,8 +4775,6 @@ jobs: build_name: wheel-py3_12-xpu secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml wheel-py3_13-cpu-build: if: ${{ github.repository_owner == 'pytorch' }} @@ -5050,8 +5010,6 @@ jobs: build_name: wheel-py3_13-cpu secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml wheel-py3_13-cuda11_8-build: if: ${{ github.repository_owner == 'pytorch' }} @@ -5290,8 +5248,6 @@ jobs: build_name: wheel-py3_13-cuda11_8 secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml wheel-py3_13-cuda12_4-build: if: ${{ github.repository_owner == 'pytorch' }} @@ -5530,8 +5486,6 @@ jobs: build_name: wheel-py3_13-cuda12_4 secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml wheel-py3_13-cuda12_6-build: if: ${{ github.repository_owner == 'pytorch' }} @@ -5770,8 +5724,6 @@ jobs: build_name: wheel-py3_13-cuda12_6 secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml wheel-py3_13-xpu-build: if: ${{ github.repository_owner == 'pytorch' }} @@ -6007,6 +5959,4 @@ jobs: build_name: wheel-py3_13-xpu secrets: github-token: ${{ secrets.GITHUB_TOKEN }} - conda-pytorchbot-token: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} - conda-pytorchbot-token-test: ${{ secrets.CONDA_PYTORCHBOT_TOKEN_TEST }} uses: ./.github/workflows/_binary-upload.yml