Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 9 additions & 6 deletions .github/workflows/conda-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,9 @@ jobs:
build_windows:
runs-on: windows-latest
timeout-minutes: 150
defaults:
run:
shell: cmd /C CALL {0}

strategy:
matrix:
Expand All @@ -98,17 +101,15 @@ jobs:

- uses: conda-incubator/setup-miniconda@fc2d68f6413eb2d87b895e92f8584b5b94a10167 # v3.3.0
with:
miniforge-variant: Miniforge3
miniforge-version: latest
auto-activate: true
activate-environment: base
activate-environment: build
channels: conda-forge
conda-remove-defaults: true
python-version: ${{ matrix.python }}

- name: Install conda build
run: |
conda install -n base -y conda-build
conda install -y conda-build
conda list -n base

- name: Cache conda packages
Expand Down Expand Up @@ -464,6 +465,9 @@ jobs:
(github.ref == 'refs/heads/master' || (startsWith(github.ref, 'refs/heads/release') == true) || github.event_name == 'push' && contains(github.ref, 'refs/tags/'))
runs-on: windows-latest
timeout-minutes: 20
defaults:
run:
shell: cmd /C CALL {0}
strategy:
matrix:
python: ['3.10', '3.11', '3.12', '3.13', '3.14']
Expand All @@ -483,8 +487,7 @@ jobs:
miniforge-version: latest
channels: conda-forge
conda-remove-defaults: true
auto-activate: true
activate-environment: base
activate-environment: upload

- name: Install anaconda-client
run: conda install anaconda-client -c conda-forge --override-channels
Expand Down
Loading