From 3f0b446f9aede8f15d61a8f5a28316bc47092a37 Mon Sep 17 00:00:00 2001 From: Michael Norris Date: Fri, 10 Jan 2025 17:15:58 -0800 Subject: [PATCH] Start migration off defaults to conda-forge channel (#4126) Summary: Pull Request resolved: https://github.com/facebookresearch/faiss/pull/4126 Differential Revision: D68043874 --- .github/actions/build_cmake/action.yml | 2 ++ .github/actions/build_conda/action.yml | 2 ++ 2 files changed, 4 insertions(+) diff --git a/.github/actions/build_cmake/action.yml b/.github/actions/build_cmake/action.yml index fa20974af5..e0234a2001 100644 --- a/.github/actions/build_cmake/action.yml +++ b/.github/actions/build_cmake/action.yml @@ -24,6 +24,8 @@ runs: with: python-version: '3.11' miniconda-version: latest + channels: conda-forge + conda-remove-defaults: "true" - name: Configure build environment shell: bash run: | diff --git a/.github/actions/build_conda/action.yml b/.github/actions/build_conda/action.yml index ff860007b2..2f6017d433 100644 --- a/.github/actions/build_conda/action.yml +++ b/.github/actions/build_conda/action.yml @@ -31,6 +31,8 @@ runs: with: python-version: '3.11' miniconda-version: latest + channels: conda-forge + conda-remove-defaults: "true" - name: Install conda build tools shell: ${{ steps.choose_shell.outputs.shell }} run: |