Skip to content

Commit

Permalink
chore: switch CI from mini-conda to micromamba
Browse files Browse the repository at this point in the history
  • Loading branch information
mdtanker committed Jun 14, 2024
1 parent 5888ced commit 6a86005
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 15 deletions.
35 changes: 20 additions & 15 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,10 @@ jobs:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
runs-on: [ubuntu-latest, macos-latest, windows-latest]

env:
FORCE_COLOR: 3
NUMBA_DISABLE_JIT: "1"

timeout-minutes: 30
steps:
# Checkout current git repository
- name: Checkout
Expand All @@ -69,22 +68,28 @@ jobs:
- name: Switch to Current Branch
run: git checkout ${{ env.BRANCH }}

# Install Mambaforge with conda-forge dependencies
- name: Setup Mambaforge
uses: conda-incubator/setup-miniconda@v3
- name: Get current week number of year
id: date
run: echo "date=$(date +%Y-W%W)" >> $GITHUB_OUTPUT # e.g., 2024-W19

# Install Micromamba with conda-forge dependencies
- name: Setup Micromamba
uses: mamba-org/setup-micromamba@v1
with:
activate-environment: polartoolkit
environment-file: env/testing_env.yml
python-version: ${{ matrix.python-version }}
channels: conda-forge,nodefaults
channel-priority: strict
miniforge-version: latest
miniforge-variant: Mambaforge
mamba-version: "*"
use-mamba: true
auto-activate-base: false
create-args: >-
python=${{ matrix.python-version }}$
post-cleanup: "all"
# cache-downloads: false
# # environment cache is persistent for one week.
# cache-environment-key:
# micromamba-environment-${{ steps.date.outputs.date }}

# Install the package that we want to test
- name: Install the package
run: pip install --no-deps -e .

# Show installed pkg information for postmortem diagnostic
# Show installed pkg information for postmortem diagnostic
- name: List installed packages
run: mamba list

Expand Down
1 change: 1 addition & 0 deletions env/testing_env.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: testing_env
channels:
- conda-forge
- nodefaults
dependencies:
- pygmt
- pip
Expand Down

0 comments on commit 6a86005

Please sign in to comment.