From f666b2681391d8b3e2d5a2d996b0625ada2dc7cb Mon Sep 17 00:00:00 2001 From: atalman Date: Wed, 9 Feb 2022 09:18:22 -0800 Subject: [PATCH 1/2] bump versions 0.11 --- .circleci/config.yml | 4 ++-- .circleci/config.yml.in | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index a0a12c113b..ea9d2214a3 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -60,11 +60,11 @@ binary_common: &binary_common build_version: description: "version number of release binary; by default, build a nightly" type: string - default: "" + default: "0.11.0" pytorch_version: description: "PyTorch version to build against; by default, use a nightly" type: string - default: "" + default: "1.11.0" # Don't edit these python_version: description: "Python version to build against (e.g., 3.8)" diff --git a/.circleci/config.yml.in b/.circleci/config.yml.in index ece9b5ff25..847b268929 100644 --- a/.circleci/config.yml.in +++ b/.circleci/config.yml.in @@ -60,11 +60,11 @@ binary_common: &binary_common build_version: description: "version number of release binary; by default, build a nightly" type: string - default: "" + default: "0.11.0" pytorch_version: description: "PyTorch version to build against; by default, use a nightly" type: string - default: "" + default: "1.11.0" # Don't edit these python_version: description: "Python version to build against (e.g., 3.8)" From 28b5269a3ec196dc2242a8eda279967e76fdbac5 Mon Sep 17 00:00:00 2001 From: atalman Date: Thu, 10 Feb 2022 10:37:29 -0800 Subject: [PATCH 2/2] Changes for audio release test1 --- .circleci/config.yml | 12 ++++++------ .circleci/config.yml.in | 12 ++++++------ 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index ea9d2214a3..0e08e500bb 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -32,12 +32,8 @@ commands: - run: name: adding UPLOAD_CHANNEL to BASH_ENV command: | - our_upload_channel=nightly - # On tags upload to test instead - if [[ -n "${CIRCLE_TAG}" ]] || [[ ${CIRCLE_BRANCH} =~ release/* ]]; then - our_upload_channel=test - fi - echo "export UPLOAD_CHANNEL=${our_upload_channel}" >> ${BASH_ENV} + # Hardcoded for release branch + echo "export UPLOAD_CHANNEL=test" >> ${BASH_ENV} load_conda_channel_flags: description: "Determines whether we need extra conda channels" steps: @@ -158,6 +154,7 @@ jobs: resource_class: 2xlarge+ steps: - checkout + - designate_upload_channel - attach_workspace: at: third_party - run: @@ -200,6 +197,7 @@ jobs: xcode: "12.0" steps: - checkout + - designate_upload_channel - load_conda_channel_flags - attach_workspace: at: third_party @@ -252,6 +250,7 @@ jobs: name: windows-cpu steps: - checkout + - designate_upload_channel - load_conda_channel_flags - windows_install_cuda - run: @@ -648,6 +647,7 @@ jobs: - attach_workspace: at: ~/workspace - checkout + - designate_upload_channel - load_conda_channel_flags - run: name: Install packages diff --git a/.circleci/config.yml.in b/.circleci/config.yml.in index 847b268929..dca6e277e6 100644 --- a/.circleci/config.yml.in +++ b/.circleci/config.yml.in @@ -32,12 +32,8 @@ commands: - run: name: adding UPLOAD_CHANNEL to BASH_ENV command: | - our_upload_channel=nightly - # On tags upload to test instead - if [[ -n "${CIRCLE_TAG}" ]] || [[ ${CIRCLE_BRANCH} =~ release/* ]]; then - our_upload_channel=test - fi - echo "export UPLOAD_CHANNEL=${our_upload_channel}" >> ${BASH_ENV} + # Hardcoded for release branch + echo "export UPLOAD_CHANNEL=test" >> ${BASH_ENV} load_conda_channel_flags: description: "Determines whether we need extra conda channels" steps: @@ -158,6 +154,7 @@ jobs: resource_class: 2xlarge+ steps: - checkout + - designate_upload_channel - attach_workspace: at: third_party - run: @@ -200,6 +197,7 @@ jobs: xcode: "12.0" steps: - checkout + - designate_upload_channel - load_conda_channel_flags - attach_workspace: at: third_party @@ -252,6 +250,7 @@ jobs: name: windows-cpu steps: - checkout + - designate_upload_channel - load_conda_channel_flags - windows_install_cuda - run: @@ -648,6 +647,7 @@ jobs: - attach_workspace: at: ~/workspace - checkout + - designate_upload_channel - load_conda_channel_flags - run: name: Install packages