From a672ef1a2587d8fdce1aecf8bf7836ef2b0f48ee Mon Sep 17 00:00:00 2001 From: Amir Sadoughi Date: Wed, 18 Dec 2024 12:40:29 -0500 Subject: [PATCH 1/4] Update action.yml Debug CI failures --- .github/actions/build_conda/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/build_conda/action.yml b/.github/actions/build_conda/action.yml index bf84a38496..a9c3657df2 100644 --- a/.github/actions/build_conda/action.yml +++ b/.github/actions/build_conda/action.yml @@ -34,8 +34,8 @@ runs: - name: Install conda build tools shell: ${{ steps.choose_shell.outputs.shell }} run: | - conda install -y -q "conda!=24.11.0" - conda install -y -q "conda-build!=24.11.0" + conda install -y "conda!=24.11.0" + conda install -y "conda-build!=24.11.0" - name: Enable anaconda uploads if: inputs.label != '' shell: ${{ steps.choose_shell.outputs.shell }} From 65fb3b4e60bf946a7b3f5b1eb8fc7f28a56c59ae Mon Sep 17 00:00:00 2001 From: Amir Sadoughi Date: Wed, 18 Dec 2024 13:07:08 -0500 Subject: [PATCH 2/4] Update action.yml --- .github/actions/build_conda/action.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/actions/build_conda/action.yml b/.github/actions/build_conda/action.yml index a9c3657df2..e3d8152053 100644 --- a/.github/actions/build_conda/action.yml +++ b/.github/actions/build_conda/action.yml @@ -36,6 +36,7 @@ runs: run: | conda install -y "conda!=24.11.0" conda install -y "conda-build!=24.11.0" + conda remove conda-anaconda-telemetry - name: Enable anaconda uploads if: inputs.label != '' shell: ${{ steps.choose_shell.outputs.shell }} From b257888a490b8a9781cbc42ef0816d9415bdbd18 Mon Sep 17 00:00:00 2001 From: Amir Sadoughi Date: Wed, 18 Dec 2024 13:46:24 -0500 Subject: [PATCH 3/4] Update action.yml --- .github/actions/build_conda/action.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/actions/build_conda/action.yml b/.github/actions/build_conda/action.yml index e3d8152053..edba5de9c8 100644 --- a/.github/actions/build_conda/action.yml +++ b/.github/actions/build_conda/action.yml @@ -36,7 +36,9 @@ runs: run: | conda install -y "conda!=24.11.0" conda install -y "conda-build!=24.11.0" - conda remove conda-anaconda-telemetry + - name: Fix CI failure + if: runner.os != 'Windows' + run: conda remove conda-anaconda-telemetry - name: Enable anaconda uploads if: inputs.label != '' shell: ${{ steps.choose_shell.outputs.shell }} From 14ac537eaf1bec337a961df43259d2600e8ed9c2 Mon Sep 17 00:00:00 2001 From: Amir Sadoughi Date: Wed, 18 Dec 2024 14:04:39 -0500 Subject: [PATCH 4/4] Update action.yml --- .github/actions/build_conda/action.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/actions/build_conda/action.yml b/.github/actions/build_conda/action.yml index edba5de9c8..683fb7a5ba 100644 --- a/.github/actions/build_conda/action.yml +++ b/.github/actions/build_conda/action.yml @@ -37,6 +37,7 @@ runs: conda install -y "conda!=24.11.0" conda install -y "conda-build!=24.11.0" - name: Fix CI failure + shell: ${{ steps.choose_shell.outputs.shell }} if: runner.os != 'Windows' run: conda remove conda-anaconda-telemetry - name: Enable anaconda uploads