This repository has been archived by the owner on Oct 17, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Use generic map to store entries #102
Open
xichen2020
wants to merge
7
commits into
master
Choose a base branch
from
xichen-genny-map-generic
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
c4fe43b
Use generic map to store entries
xichen2020 586ed87
Fix package name
xichen2020 fa2a594
Remove master only to test build
xichen2020 7cde45e
Add master branch only back
xichen2020 1274d93
Remove master only branch config
xichen2020 7892b2a
Remove lint build target
xichen2020 986d972
Enable golint in metalinter
xichen2020 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Submodule .ci
updated
8 files
+24 −10 | auto-gen.sh | |
+1,551 −0 | codecov.sh | |
+17 −2 | common.mk | |
+4 −2 | go-build-ldflags.sh | |
+57 −0 | test-big-cover.sh | |
+6 −25 | test-cover.sh | |
+32 −4 | test-integration.sh | |
+46 −0 | variables.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
_mock.go | ||
_gen.go | ||
_matcher.go | ||
generated/ | ||
tools/ | ||
vendor/ | ||
integration/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
(vendor/) | ||
(generated/) | ||
(_mock.go) | ||
(_gen.go) | ||
(_string.go) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
vendor/ | ||
generated/ | ||
_mock.go | ||
_gen.go |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,32 @@ | ||
{ | ||
"Linters": { | ||
"badtime": {"Command": "badtime", "Pattern": "PATH:LINE:COL:MESSAGE"}, | ||
"deadcode": { "Command": "deadcode -tags integration" }, | ||
"varcheck": { "Command": "varcheck -tags integration" }, | ||
"megacheck": { "Command": "megacheck -tags integration" } }, | ||
"Enable": | ||
[ "deadcode" | ||
, "varcheck" | ||
, "structcheck" | ||
, "goconst" | ||
, "ineffassign" | ||
, "unconvert" | ||
, "misspell" | ||
, "unparam" | ||
, "badtime" | ||
, "megacheck" ], | ||
"badtime": { | ||
"Command": "badtime", | ||
"Pattern": "PATH:LINE:COL:MESSAGE" | ||
}, | ||
"deadcode": { | ||
"Command": "deadcode -tags integration" | ||
}, | ||
"varcheck": { | ||
"Command": "varcheck -tags integration" | ||
}, | ||
"megacheck": { | ||
"Command": "megacheck -tags integration" | ||
} | ||
}, | ||
"Enable": [ | ||
"golint", | ||
"deadcode", | ||
"varcheck", | ||
"structcheck", | ||
"goconst", | ||
"ineffassign", | ||
"unconvert", | ||
"misspell", | ||
"unparam", | ||
"badtime", | ||
"megacheck" | ||
], | ||
"Deadline": "3m", | ||
"EnableGC": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,16 @@ | ||
language: go | ||
go: | ||
- 1.8.3 | ||
- 1.9.2 | ||
- "1.9.x" | ||
- "1.10.x" | ||
install: make install-ci | ||
env: | ||
# Set higher timeouts and package name for travis | ||
- TEST_TIMEOUT_SCALE=20 PACKAGE=github.com/m3db/m3aggregator | ||
sudo: required | ||
dist: trusty | ||
script: | ||
- make all | ||
env: | ||
global: | ||
- TEST_TIMEOUT_SCALE=20 PACKAGE=github.com/m3db/m3aggregator | ||
matrix: | ||
- MAKE_TARGET="test-ci-unit" | ||
- MAKE_TARGET="test-ci-integration" | ||
- MAKE_TARGET="metalint" | ||
- MAKE_TARGET="test-genny-all" | ||
script: "make $MAKE_TARGET" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Don't see this file in the diff/on master, do you need to create still?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lol nvm, i'm blind