Skip to content

Commit 7821b9b

Browse files
Merge pull request #1 from filipecosta90/resharding.check
Ensure benchmark will work with OSS cluster API and resharding during the benchmark
2 parents 137a873 + 071a0a6 commit 7821b9b

File tree

6 files changed

+192
-80
lines changed

6 files changed

+192
-80
lines changed

.github/release-drafter-config.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name-template: 'Version $NEXT_PATCH_VERSION'
2+
tag-template: 'v$NEXT_PATCH_VERSION'
3+
categories:
4+
- title: '🚀Features'
5+
labels:
6+
- 'feature'
7+
- 'enhancement'
8+
- title: 'Bug Fixes'
9+
labels:
10+
- 'fix'
11+
- 'bugfix'
12+
- 'bug'
13+
- title: 'Maintenance'
14+
label: 'chore'
15+
change-template: '- $TITLE @$AUTHOR (#$NUMBER)'
16+
exclude-labels:
17+
- 'skip-changelog'
18+
template: |
19+
## Changes
20+
21+
$CHANGES
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Release Drafter
2+
3+
on:
4+
push:
5+
# branches to consider in the event; optional, defaults to all
6+
branches:
7+
- master
8+
9+
jobs:
10+
update_release_draft:
11+
runs-on: ubuntu-latest
12+
steps:
13+
# Drafts your next Release notes as Pull Requests are merged into "master"
14+
- uses: release-drafter/release-drafter@v5
15+
with:
16+
# (Optional) specify config name to use, relative to .github/. Default: release-drafter.yml
17+
config-name: release-drafter-config.yml
18+
env:
19+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@ checkfmt:
2323
fi && \
2424
exit $$EXIT_CODE
2525

26+
lint:
27+
$(GOGET) github.com/golangci/golangci-lint/cmd/golangci-lint
28+
golangci-lint run
29+
2630
get:
2731
$(GOGET) -t -v ./...
2832

go.mod

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ module github.com/filipecosta90/redis-benchmark-go
33
go 1.14
44

55
require (
6-
github.com/filipecosta90/hdrhistogram v0.1.1
6+
github.com/HdrHistogram/hdrhistogram-go v0.9.0
7+
github.com/codahale/hdrhistogram v0.9.0 // indirect
8+
github.com/golangci/golangci-lint v1.31.0 // indirect
79
github.com/mediocregopher/radix/v3 v3.5.2
810
)

0 commit comments

Comments
 (0)