Skip to content

Commit

Permalink
CI: skip cleanup on windows for GH CI
Browse files Browse the repository at this point in the history
cleanup there takes hours, or even times out

ref: conda-incubator/setup-miniconda#380
  • Loading branch information
k-dominik committed Jan 10, 2025
1 parent fed5679 commit 037d44f
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/core-conda-bld.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,13 +79,27 @@ jobs:
with:
fetch-depth: 0
- uses: conda-incubator/setup-miniconda@v3
if: matrix.os != 'windows-latest'
with:
auto-update-conda: true
auto-activate-base: true
activate-environment: ""
channel-priority: strict
miniforge-version: latest
conda-solver: libmamba
- uses: conda-incubator/setup-miniconda@v3
# we need to skip cleanup on windows currently, because it takes
# hours and stalls CI that way (run-post: false)
# ref: https://github.com/conda-incubator/setup-miniconda/issues/380
if: matrix.os == 'windows-latest'
with:
auto-update-conda: true
auto-activate-base: true
activate-environment: ""
channel-priority: strict
miniforge-version: latest
conda-solver: libmamba
run-post: false
- name: install xvfb/deps
if: matrix.os == 'ubuntu-latest'
run: |
Expand Down

0 comments on commit 037d44f

Please sign in to comment.