Skip to content

Commit 3082f74

Browse files
committedMay 7, 2025·
Switch to self-hosted; not sure why failures are reported green
1 parent 3c461fd commit 3082f74

File tree

2 files changed

+15
-14
lines changed

2 files changed

+15
-14
lines changed
 

‎.github/workflows/micromamba.yml

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ on:
1818
jobs:
1919
run-benchmark:
2020
name: run_clustbench
21-
runs-on: ubuntu-latest
22-
## runs-on: self-hosted
21+
## runs-on: ubuntu-latest
22+
runs-on: self-hosted
2323
strategy:
2424
matrix:
2525
ob_branch: [dev, reduce_install_scope, main]
@@ -33,13 +33,17 @@ jobs:
3333
- name: Install (with) micromamba
3434
uses: mamba-org/setup-micromamba@v2
3535
with:
36-
# cache-environment: true
36+
cache-environment: true
3737
micromamba-version: ${{ matrix.micromamba_version }}
38-
38+
environment-name: test-env
39+
create-args: >-
40+
python=3.12
41+
pip
42+
conda
43+
3944
- name: Overwrite omnibenchmark CLI to branch
4045
shell: bash -l {0}
4146
run: |
42-
mamba install -y pip
4347
pip install git+https://github.com/omnibenchmark/omnibenchmark.git@${{ matrix.ob_branch }}
4448
4549
# - name: Enable a benchmarking `out` cache
@@ -51,19 +55,17 @@ jobs:
5155

5256
- name: Run benchmark
5357
shell: bash -l {0}
54-
continue-on-error: false
5558
run: |
5659
date
57-
echo "y" | ob run benchmark -b Clustering.yaml --local --cores 2 --continue-on-error
60+
echo "y" | ob run benchmark -b Clustering.yaml --local --cores 10 --continue-on-error
5861
date
5962
if: matrix.ob_branch == 'dev' || matrix.ob_branch == 'reduce_install_scope'
6063

6164
- name: Run benchmark
6265
shell: bash -l {0}
63-
continue-on-error: false
6466
run: |
6567
date
66-
echo "y" | ob run benchmark -b Clustering.yaml --local --threads 2
68+
echo "y" | ob run benchmark -b Clustering.yaml --local --threads 10
6769
date
6870
if: matrix.ob_branch == 'main'
6971

‎.github/workflows/miniconda_miniforge.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ on:
1818
jobs:
1919
run-benchmark:
2020
name: run_clustbench
21-
runs-on: ubuntu-latest
22-
## runs-on: self-hosted
21+
## runs-on: ubuntu-latest
22+
runs-on: self-hosted
2323
strategy:
2424
matrix:
2525
ob_branch: [dev, reduce_install_scope, main]
@@ -65,10 +65,9 @@ jobs:
6565

6666
- name: Run benchmark
6767
shell: bash -l {0}
68-
continue-on-error: false
6968
run: |
7069
date
71-
echo "y" | ob run benchmark -b Clustering.yaml --local --cores 2 --continue-on-error
70+
echo "y" | ob run benchmark -b Clustering.yaml --local --cores 10 --continue-on-error
7271
date
7372
if: matrix.ob_branch == 'dev' || matrix.ob_branch == 'reduce_install_scope'
7473

@@ -77,7 +76,7 @@ jobs:
7776
continue-on-error: false
7877
run: |
7978
date
80-
echo "y" | ob run benchmark -b Clustering.yaml --local --threads 2
79+
echo "y" | ob run benchmark -b Clustering.yaml --local --threads 10
8180
date
8281
if: matrix.ob_branch == 'main'
8382

0 commit comments

Comments
 (0)
Please sign in to comment.