From 0a0af00966b64ee05e5cab9cdf8bcfa7d101525b Mon Sep 17 00:00:00 2001 From: Amir Sadoughi Date: Wed, 18 Dec 2024 14:34:27 -0800 Subject: [PATCH] Update action.yml (#4100) Summary: Debug CI failures Pull Request resolved: https://github.com/facebookresearch/faiss/pull/4100 Reviewed By: bshethmeta Differential Revision: D67409777 Pulled By: asadoughi fbshipit-source-id: 0e60ee10c7eef796aabc061f089d12b64f5a98ea --- .github/actions/build_conda/action.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/actions/build_conda/action.yml b/.github/actions/build_conda/action.yml index bf84a38496..683fb7a5ba 100644 --- a/.github/actions/build_conda/action.yml +++ b/.github/actions/build_conda/action.yml @@ -34,8 +34,12 @@ 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: Fix CI failure + shell: ${{ steps.choose_shell.outputs.shell }} + if: runner.os != 'Windows' + run: conda remove conda-anaconda-telemetry - name: Enable anaconda uploads if: inputs.label != '' shell: ${{ steps.choose_shell.outputs.shell }}