Skip to content

Commit

Permalink
Merge branch 'master' into k8s-netperf
Browse files Browse the repository at this point in the history
  • Loading branch information
vishnuchalla authored Nov 29, 2023
2 parents 0cf9b17 + 39a58bd commit d374988
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Get dependencies
run: make deps
Expand All @@ -35,7 +35,7 @@ jobs:

steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Compile dashboards
run: make build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Install dependencies required for multi-arch builds
run: sudo apt-get update && sudo apt-get install qemu-user-static podman fuse-overlayfs
Expand Down
7 changes: 5 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
JSONNET := https://github.com/google/go-jsonnet/releases/download/v0.20.0/go-jsonnet_0.20.0_Linux_x86_64.tar.gz
JB = https://github.com/jsonnet-bundler/jsonnet-bundler/releases/latest/download/jb-linux-amd64
ARCH := $(shell arch)
OS_TYPE := $(shell uname)
JB_OS_TYPE := $(shell uname | tr '[:upper:]' '[:lower:]')
JSONNET := https://github.com/google/go-jsonnet/releases/download/v0.20.0/go-jsonnet_0.20.0_$(OS_TYPE)_$(ARCH).tar.gz
JB = https://github.com/jsonnet-bundler/jsonnet-bundler/releases/latest/download/jb-$(JB_OS_TYPE)-$(ARCH)
BINDIR = bin
TEMPLATESDIR = templates
OUTPUTDIR = rendered
Expand Down
2 changes: 1 addition & 1 deletion dittybopper/syncer/entrypoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class GrafanaOperations:
def __init__(self, grafana_url: str, input_directory: str, git_commit_hash: str):
self.grafana_url = grafana_url
self.input_directory = input_directory
self.git_commit_hash = git_commit_hash
self.git_commit_hash = git_commit_hash if git_commit_hash else ''
self.dashboards = defaultdict(list)
self.folder_map = dict()
self.logger = logging.getLogger(__name__)
Expand Down

0 comments on commit d374988

Please sign in to comment.