Skip to content

Commit ee4c1ef

Browse files
committed
Is it installing the requested micromamba version?
1 parent 0a22d34 commit ee4c1ef

File tree

2 files changed

+20
-12
lines changed

2 files changed

+20
-12
lines changed

.github/workflows/micromamba.yml

Lines changed: 14 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: micromamba
2-
concurrency:
3-
group: ${{ github.head_ref || github.run_id }}
4-
cancel-in-progress: true
2+
# concurrency:
3+
# group: ${{ github.head_ref || github.run_id }}
4+
# cancel-in-progress: true
55

66
on:
77
push:
@@ -23,27 +23,32 @@ jobs:
2323
strategy:
2424
matrix:
2525
ob_branch: [dev, reduce_install_scope, main]
26-
micromamba_version: ['2.0.5-0', '1.5.12-0']
26+
micromamba-version: ['2.1.1-0', '2.0.5-0', '1.5.12-0', '1.5.8-0']
2727
fail-fast: false
28+
concurrency:
29+
group: micromamba
30+
cancel-in-progress: true
2831
steps:
2932
- name: Check out repository
3033
uses: actions/checkout@v4
3134

32-
3335
- name: Install (with) micromamba
3436
uses: mamba-org/setup-micromamba@v2
3537
with:
36-
cache-environment: true
37-
micromamba-version: ${{ matrix.micromamba_version }}
38-
environment-name: test-env-${{matrix.ob_branch }}-${{ matrix.micromamba_version }}
38+
cache-environment: false # true
39+
micromamba-version: ${{ matrix.micromamba-version }}
40+
download-micromamba: true
41+
micromamba-binary-path: ${{ runner.temp }}/bin/micromamba-${{ matrix.micromamba-version }}/micromamba
42+
environment-name: test-env-${{matrix.ob_branch }}-${{ matrix.micromamba-version }}
3943
create-args: >-
4044
python=3.12
4145
pip
4246
conda
43-
47+
post-cleanup: environment # all
4448
- name: Overwrite omnibenchmark CLI to branch
4549
shell: bash -l {0}
4650
run: |
51+
micromamba --version
4752
pip install git+https://github.com/omnibenchmark/omnibenchmark.git@${{ matrix.ob_branch }}
4853
4954
# - name: Enable a benchmarking `out` cache

.github/workflows/miniconda_miniforge.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: clustbench_miniforge
2-
concurrency:
3-
group: ${{ github.head_ref || github.run_id }}
4-
cancel-in-progress: true
2+
# concurrency:
3+
# group: ${{ github.head_ref || github.run_id }}
4+
# cancel-in-progress: true
55

66
on:
77
push:
@@ -24,6 +24,9 @@ jobs:
2424
matrix:
2525
ob_branch: [dev, reduce_install_scope, main]
2626
fail-fast: false
27+
concurrency:
28+
group: miniconda
29+
cancel-in-progress: false # true
2730
steps:
2831
- name: Check out repository
2932
uses: actions/checkout@v4

0 commit comments

Comments
 (0)