Skip to content

Commit

Permalink
Merge pull request #27 from Kuonirad/devin/1734935815-fix-solver-timeout
Browse files Browse the repository at this point in the history
ci: aggressively remove libmamba solver and clean conda environment
  • Loading branch information
Kuonirad authored Dec 23, 2024
2 parents f87e212 + bf8b7b8 commit b8d9cfd
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,14 @@ jobs:
timeout-minutes: 10
run: |
echo "=== Starting conda configuration ==="
# Remove libmamba solver and related packages
conda remove -n base conda-libmamba-solver --force || true
conda clean --all --yes
# Remove any existing solver configuration
conda config --remove-key solver || true
conda config --system --remove-key solver || true
conda config --env --remove-key solver || true
# Configure conda settings
conda config --set solver classic
Expand Down

0 comments on commit b8d9cfd

Please sign in to comment.