Skip to content

Commit 90ecaa1

Browse files
committed
Switch to run_omnibenchmark as action handler
1 parent dab8639 commit 90ecaa1

File tree

6 files changed

+62
-207
lines changed

6 files changed

+62
-207
lines changed

.github/workflows/micromamba.yml

Lines changed: 0 additions & 69 deletions
This file was deleted.

.github/workflows/miniconda_miniforge.yml

Lines changed: 0 additions & 78 deletions
This file was deleted.

.github/workflows/oras.yml

Lines changed: 0 additions & 60 deletions
This file was deleted.

.github/workflows/run_conda.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: run_on_conda
2+
on:
3+
pull_request:
4+
workflow_dispatch:
5+
# schedule:
6+
# - cron: "30 1 * * *" # at 1.30am
7+
8+
jobs:
9+
run-benchmark:
10+
name: Run on conda
11+
## runs-on: ubuntu-latest
12+
runs-on: self-hosted
13+
strategy:
14+
matrix:
15+
ob_branch: [main]
16+
fail-fast: false
17+
steps:
18+
- name: Checkout
19+
uses: actions/checkout@v4
20+
21+
- name: Use action
22+
uses: omnibenchmark/run_omnibenchmark@main
23+
with:
24+
yaml: Clustering_conda.yml
25+
backend: conda
26+
omnibenchmark_branch: ${{ matrix.ob_branch }}

.github/workflows/run_oras.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: run_on_oras
2+
on:
3+
pull_request:
4+
workflow_dispatch:
5+
schedule:
6+
- cron: "30 1 * * *" # at 1.30am
7+
8+
jobs:
9+
run-benchmark:
10+
name: Run on oras
11+
runs-on: ubuntu-latest
12+
strategy:
13+
matrix:
14+
ob_branch: [main]
15+
fail-fast: false
16+
steps:
17+
- name: Checkout
18+
uses: actions/checkout@v4
19+
20+
- name: Use action
21+
uses: omnibenchmark/run_omnibenchmark@main
22+
with:
23+
yaml: Clustering_oras.yml
24+
backend: apptainer
25+
omnibenchmark_branch: ${{ matrix.ob_branch }}

env/omnibenchmark_conda.yaml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: omnibenchmark_deps
2+
channels:
3+
- conda-forge
4+
- bioconda
5+
- nodefaults
6+
dependencies:
7+
- conda-forge::python == 3.12
8+
- conda-forge::pip >= 25.0.0
9+
- conda-forge::mamba >= 1.5.10
10+
# - conda-forge::lmod >= 8.7.25
11+
- conda-forge::conda >= 25.5.1

0 commit comments

Comments
 (0)