Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tests micromamba 2.0.5.rc0 in the CI #3680

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions .github/workflows/static_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ jobs:
with:
environment-name: mambabuild
create-args: python boa
micromamba-version: 2.0.5.rc0-0
post-cleanup: none # FIXME the cleanup fails on OSX
- name: Build conda package (Unix native)
if: ${{ !(matrix.platform == 'linux' && matrix.arch != '64') }}
Expand Down Expand Up @@ -149,6 +150,7 @@ jobs:
uses: ilammy/msvc-dev-cmd@v1
- uses: mamba-org/setup-micromamba@v2
with:
micromamba-version: 2.0.5.rc0-0
environment-name: mambabuild
init-shell: bash cmd.exe
# Constraint on fmt is due to an issue with 11.0.2 (to be fixed in next version)
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/unix_impl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ jobs:
environment-file: ./dev/environment-dev.yml
environment-name: build_env
cache-environment: true
micromamba-version: 2.0.5.rc0-0
- uses: hendrikmuhs/ccache-action@main
with:
variant: sccache
Expand Down Expand Up @@ -74,6 +75,7 @@ jobs:
with:
environment-file: ./build/environment.lock
environment-name: build_env
micromamba-version: 2.0.5.rc0-0
- name: Run solv-cpp tests
run: |
./build/libmamba/ext/solv-cpp/tests/test_solv_cpp
Expand All @@ -100,6 +102,7 @@ jobs:
with:
environment-file: ./build/environment.lock
environment-name: build_env
micromamba-version: 2.0.5.rc0-0
- name: Install libmambapy
run: |
cmake --install build/ --prefix "${CONDA_PREFIX}"
Expand Down Expand Up @@ -127,6 +130,7 @@ jobs:
with:
environment-file: ./build/environment.lock
environment-name: build_env
micromamba-version: 2.0.5.rc0-0
- name: install zsh, xonsh, fish and tcsh in linux
if: startsWith(inputs.os, 'ubuntu')
run: |
Expand Down Expand Up @@ -184,6 +188,7 @@ jobs:
with:
environment-file: ./build/environment.lock
environment-name: build_env
micromamba-version: 2.0.5.rc0-0
- name: Run tests using conda-content-trust (server side)
shell: bash -l {0} -euo pipefail -x
run: |
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/windows_impl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ jobs:
environment-name: build_env
cache-environment: true
init-shell: cmd.exe
micromamba-version: 2.0.5.rc0-0
- uses: hendrikmuhs/ccache-action@main
with:
variant: sccache
Expand Down Expand Up @@ -80,6 +81,7 @@ jobs:
environment-file: ./build/environment.lock
environment-name: build_env
init-shell: bash cmd.exe
micromamba-version: 2.0.5.rc0-0
- name: Run solv-cpp tests
shell: bash -elo pipefail {0}
run: |
Expand Down Expand Up @@ -109,6 +111,7 @@ jobs:
environment-file: ./build/environment.lock
environment-name: build_env
init-shell: bash cmd.exe
micromamba-version: 2.0.5.rc0-0
- name: Install libmambapy
run: |
cmake --install build/ --prefix %CONDA_PREFIX%
Expand Down Expand Up @@ -137,6 +140,7 @@ jobs:
environment-file: ./build/environment.lock
environment-name: build_env
init-shell: bash cmd.exe powershell
micromamba-version: 2.0.5.rc0-0
- name: Install mamba
shell: bash -elo pipefail {0}
run: |
Expand Down
Loading