File tree 2 files changed +15
-14
lines changed
2 files changed +15
-14
lines changed Original file line number Diff line number Diff line change 18
18
jobs :
19
19
run-benchmark :
20
20
name : run_clustbench
21
- runs-on : ubuntu-latest
22
- # # runs-on: self-hosted
21
+ # # runs-on: ubuntu-latest
22
+ runs-on : self-hosted
23
23
strategy :
24
24
matrix :
25
25
ob_branch : [dev, reduce_install_scope, main]
@@ -33,13 +33,17 @@ jobs:
33
33
- name : Install (with) micromamba
34
34
uses : mamba-org/setup-micromamba@v2
35
35
with :
36
- # cache-environment: true
36
+ cache-environment : true
37
37
micromamba-version : ${{ matrix.micromamba_version }}
38
-
38
+ environment-name : test-env
39
+ create-args : >-
40
+ python=3.12
41
+ pip
42
+ conda
43
+
39
44
- name : Overwrite omnibenchmark CLI to branch
40
45
shell : bash -l {0}
41
46
run : |
42
- mamba install -y pip
43
47
pip install git+https://github.com/omnibenchmark/omnibenchmark.git@${{ matrix.ob_branch }}
44
48
45
49
# - name: Enable a benchmarking `out` cache
@@ -51,19 +55,17 @@ jobs:
51
55
52
56
- name : Run benchmark
53
57
shell : bash -l {0}
54
- continue-on-error : false
55
58
run : |
56
59
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
58
61
date
59
62
if : matrix.ob_branch == 'dev' || matrix.ob_branch == 'reduce_install_scope'
60
63
61
64
- name : Run benchmark
62
65
shell : bash -l {0}
63
- continue-on-error : false
64
66
run : |
65
67
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
67
69
date
68
70
if : matrix.ob_branch == 'main'
69
71
Original file line number Diff line number Diff line change 18
18
jobs :
19
19
run-benchmark :
20
20
name : run_clustbench
21
- runs-on : ubuntu-latest
22
- # # runs-on: self-hosted
21
+ # # runs-on: ubuntu-latest
22
+ runs-on : self-hosted
23
23
strategy :
24
24
matrix :
25
25
ob_branch : [dev, reduce_install_scope, main]
65
65
66
66
- name : Run benchmark
67
67
shell : bash -l {0}
68
- continue-on-error : false
69
68
run : |
70
69
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
72
71
date
73
72
if : matrix.ob_branch == 'dev' || matrix.ob_branch == 'reduce_install_scope'
74
73
77
76
continue-on-error : false
78
77
run : |
79
78
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
81
80
date
82
81
if : matrix.ob_branch == 'main'
83
82
You can’t perform that action at this time.
0 commit comments