Skip to content

Commit

Permalink
Fix micromamba dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
lamyj committed Apr 3, 2024
1 parent b1ba3ff commit 0e98623
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,14 @@ jobs:
DEBIAN_FRONTEND=noninteractive apt-get install -y git python3
if: ${{ contains(matrix.packaging, 'apt') }}

- name: Provision (Micromamba on Linux)
# On container images, some base packages are missing to correctly set
# up conda
run: |
apt update
DEBIAN_FRONTEND=noninteractive apt-get install -y curl
if: ${{ contains(matrix.packaging, 'conda') && contains(matrix.os, 'ubuntu-latest') }}

- name: Provision (Micromamba)
uses: mamba-org/setup-micromamba@v1
with:
Expand Down

0 comments on commit 0e98623

Please sign in to comment.