Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 3b97f28

Browse files
committedMay 8, 2025·
Concurrency, micromamba bin name
1 parent cc246c6 commit 3b97f28

File tree

2 files changed

+16
-11
lines changed

2 files changed

+16
-11
lines changed
 

‎.github/workflows/micromamba.yml

Lines changed: 10 additions & 8 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,26 +23,28 @@ jobs:
2323
strategy:
2424
matrix:
2525
ob_branch: [dev, reduce_install_scope, main]
26-
micromamba-version: ['2.1.1-0', '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
38+
cache-environment: false # true
3739
micromamba-version: ${{ matrix.micromamba-version }}
40+
download-micromamba: true
41+
micromamba-binary-path: ${{ runner.temp }}/bin/micromamba-${{ matrix.micromamba-version }}/micromamba
3842
environment-name: test-env-${{matrix.ob_branch }}-${{ matrix.micromamba-version }}
3943
create-args: >-
4044
python=3.12
4145
pip
4246
conda
4347
post-cleanup: environment # all
44-
download-micromamba: true
45-
micromamba-binary-path: ${{ runner.temp }}/bin/micromamba-${{ matrix.micromamba-version }}
4648
- name: Overwrite omnibenchmark CLI to branch
4749
shell: bash -l {0}
4850
run: |

‎.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: true
2730
steps:
2831
- name: Check out repository
2932
uses: actions/checkout@v4

0 commit comments

Comments
 (0)
Please sign in to comment.