File tree Expand file tree Collapse file tree 6 files changed +62
-207
lines changed Expand file tree Collapse file tree 6 files changed +62
-207
lines changed Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 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 }}
Original file line number Diff line number Diff line change 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 }}
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments