Skip to content

Commit

Permalink
Start migration off defaults to conda-forge channel
Browse files Browse the repository at this point in the history
Differential Revision: D68043874
  • Loading branch information
Michael Norris authored and facebook-github-bot committed Jan 10, 2025
1 parent 3d0ac32 commit e459fd4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/actions/build_cmake/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@ runs:
shell: bash
run: |
# initialize Conda
conda config --show channels
conda config --remove channels defaults
conda config --add channels conda-forge
conda config --set solver libmamba
conda update -y -q conda
echo "$CONDA/bin" >> $GITHUB_PATH
Expand Down
3 changes: 3 additions & 0 deletions .github/actions/build_conda/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@ runs:
- name: Install conda build tools
shell: ${{ steps.choose_shell.outputs.shell }}
run: |
conda config --show channels
conda config --remove channels defaults
conda config --add channels conda-forge
conda install -y -q "conda!=24.11.0"
conda install -y -q "conda-build!=24.11.0"
- name: Fix CI failure
Expand Down

0 comments on commit e459fd4

Please sign in to comment.