File tree Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Original file line number Diff line number Diff line change 24
24
with :
25
25
python-version : " 3.12"
26
26
27
+ - name : Install Mambaforge
28
+ uses : conda-incubator/setup-miniconda@v3
29
+ with :
30
+ miniforge-variant : Mambaforge
31
+ use-mamba : true
32
+ activate-environment : omnibenchmark-env
33
+ auto-update-conda : true
34
+ channels : conda-forge
35
+
27
36
- name : Cache pip packages
28
37
id : cache-pip
29
38
uses : actions/cache@v3
32
41
key : pip-${{ runner.os }}-${{ hashFiles('requirements.txt') }}
33
42
34
43
- name : Install omnibenchmark CLI
44
+ shell : bash -l {0}
35
45
run : |
46
+ mamba install -y pip
36
47
pip install git+https://github.com/omnibenchmark/omnibenchmark.git@dev
37
48
38
49
- name : Load benchmark cache
43
54
key : benchmark-${{ runner.os }}-${{ hashFiles('Clustering.yaml') }}
44
55
45
56
- name : Run benchmark
46
- continue-on-error : true
57
+ shell : bash -l {0}
47
58
run : |
48
59
echo "y" | ob run benchmark -b Clustering.yaml --local --threads 20 --continue-on-error
49
60
You can’t perform that action at this time.
0 commit comments