Skip to content

Commit

Permalink
fix grafana job (#643)
Browse files Browse the repository at this point in the history
  • Loading branch information
ebattat authored Aug 28, 2023
1 parent 03817e8 commit bc45171
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[bumpversion]
commit = False
tag = True
current_version = 1.0.508
current_version = 1.0.509
tag_name = v{current_version}
message = GitHub Actions Build {current_version}

Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/Nightly_Perf_Env_CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -321,6 +321,9 @@ jobs:
name: update_grafana_dashboard
needs: [ initialize_nightly, workload, finalize_nightly ]
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.10' ]
steps:
- name: Checkout repository
uses: actions/checkout@v3
Expand All @@ -337,7 +340,7 @@ jobs:
ELASTICSEARCH_USER: ${{ secrets.PERF_ELASTICSEARCH_USER }}
ELASTICSEARCH_PASSWORD: ${{ secrets.PERF_ELASTICSEARCH_PASSWORD }}
run: |
python "$GITHUB_WORKSPACE"/grafonnet_generator/grafana/update_versions_main_libsonnet.py
python "$GITHUB_WORKSPACE"/benchmark_runner/grafana/update_versions_main_libsonnet.py
- name: Generate grafana dashboard.json using grafonnet container
run: |
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/Perf_Env_Build_Test_CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -269,6 +269,9 @@ jobs:
name: update_grafana_dashboard
needs: [ unittest, integration_test, pypi_upload, pypi_validate, quay_upload ]
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.10' ]
steps:
- name: Checkout repository
uses: actions/checkout@v3
Expand All @@ -285,7 +288,7 @@ jobs:
ELASTICSEARCH_USER: ${{ secrets.PERF_ELASTICSEARCH_USER }}
ELASTICSEARCH_PASSWORD: ${{ secrets.PERF_ELASTICSEARCH_PASSWORD }}
run: |
python "$GITHUB_WORKSPACE"/grafonnet_generator/grafana/update_versions_main_libsonnet.py
python "$GITHUB_WORKSPACE"/benchmark_runner/grafana/update_versions_main_libsonnet.py
- name: Generate grafana dashboard.json using grafonnet container
run: |
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from setuptools import setup, find_packages


__version__ = '1.0.508'
__version__ = '1.0.509'


here = path.abspath(path.dirname(__file__))
Expand Down

0 comments on commit bc45171

Please sign in to comment.