Skip to content

Commit bc45171

Browse files
authored
fix grafana job (#643)
1 parent 03817e8 commit bc45171

File tree

5 files changed

+10
-4
lines changed

5 files changed

+10
-4
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[bumpversion]
22
commit = False
33
tag = True
4-
current_version = 1.0.508
4+
current_version = 1.0.509
55
tag_name = v{current_version}
66
message = GitHub Actions Build {current_version}
77

.github/workflows/Nightly_Perf_Env_CI.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -321,6 +321,9 @@ jobs:
321321
name: update_grafana_dashboard
322322
needs: [ initialize_nightly, workload, finalize_nightly ]
323323
runs-on: ubuntu-latest
324+
strategy:
325+
matrix:
326+
python-version: [ '3.10' ]
324327
steps:
325328
- name: Checkout repository
326329
uses: actions/checkout@v3
@@ -337,7 +340,7 @@ jobs:
337340
ELASTICSEARCH_USER: ${{ secrets.PERF_ELASTICSEARCH_USER }}
338341
ELASTICSEARCH_PASSWORD: ${{ secrets.PERF_ELASTICSEARCH_PASSWORD }}
339342
run: |
340-
python "$GITHUB_WORKSPACE"/grafonnet_generator/grafana/update_versions_main_libsonnet.py
343+
python "$GITHUB_WORKSPACE"/benchmark_runner/grafana/update_versions_main_libsonnet.py
341344
342345
- name: Generate grafana dashboard.json using grafonnet container
343346
run: |

.github/workflows/Perf_Env_Build_Test_CI.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,6 +269,9 @@ jobs:
269269
name: update_grafana_dashboard
270270
needs: [ unittest, integration_test, pypi_upload, pypi_validate, quay_upload ]
271271
runs-on: ubuntu-latest
272+
strategy:
273+
matrix:
274+
python-version: [ '3.10' ]
272275
steps:
273276
- name: Checkout repository
274277
uses: actions/checkout@v3
@@ -285,7 +288,7 @@ jobs:
285288
ELASTICSEARCH_USER: ${{ secrets.PERF_ELASTICSEARCH_USER }}
286289
ELASTICSEARCH_PASSWORD: ${{ secrets.PERF_ELASTICSEARCH_PASSWORD }}
287290
run: |
288-
python "$GITHUB_WORKSPACE"/grafonnet_generator/grafana/update_versions_main_libsonnet.py
291+
python "$GITHUB_WORKSPACE"/benchmark_runner/grafana/update_versions_main_libsonnet.py
289292
290293
- name: Generate grafana dashboard.json using grafonnet container
291294
run: |
File renamed without changes.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from setuptools import setup, find_packages
55

66

7-
__version__ = '1.0.508'
7+
__version__ = '1.0.509'
88

99

1010
here = path.abspath(path.dirname(__file__))

0 commit comments

Comments
 (0)