Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix travis to only difftest on go 1.9 #520

Merged
merged 1 commit into from
Jan 10, 2018

Conversation

achew22
Copy link
Collaborator

@achew22 achew22 commented Jan 10, 2018

Go master contains the commit hash that it was built at (or some similar
token). Unfortunately our regexp that we were checking against had an
escaping error. grep -q 1.9 instead of grep -q 1\.9 which meant it
was matching 1[any character]2. The current golang master commit is

"go version devel +15bc0a129a Wed Jan 3 04:34:11 2018 +0000 linux/amd64"

Fixes by making the string A LOT more specific and escaping.

Go master contains the commit hash that it was built at (or some similar
token). Unfortunately our regexp that we were checking against had an
escaping error. `grep -q 1.9` instead of `grep -q 1\.9` which meant it
was matching 1[any character]2. The current golang master commit is

"go version devel +15bc0a129a Wed Jan 3 04:34:11 2018 +0000 linux/amd64"

Fixes by making the string A LOT more specific and escaping.
@achew22 achew22 merged commit bd3d303 into grpc-ecosystem:master Jan 10, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant