-
Notifications
You must be signed in to change notification settings - Fork 164
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
Add Makefile and Circle CI config #14
Conversation
.circleci/config.yaml
Outdated
@@ -0,0 +1,14 @@ | |||
version: 2 |
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.
I'm less familiar with Circle CI setup so gently paging @rghetia and @pavolloffay for a review.
Makefile
Outdated
.PHONY: install-tools | ||
install-tools: | ||
GO111MODULE=on go install \ | ||
github.com/client9/misspell/cmd/misspell |
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.
Use this approach to install tools locally to guarantee that same version is used.
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.
Thanks, updated in 396b249.
Fixes open-telemetry#13. Currently the only job is misspell check.
@songy23 the failure may be due to filename .circleci.yaml instead of .circleci.yml |
@rghetia That fixed it - thanks! |
Also update Makefile to build tools locally. Similar to open-telemetry/oteps#14.
Also update Makefile to build tools locally. Similar to open-telemetry/oteps#14.
Also update Makefile to build tools locally. Similar to open-telemetry/oteps#14.
Also update Makefile to build tools locally. Similar to open-telemetry/oteps#14.
* Add typed spans working document * Restructuring and scoping - Added motivation - Provided a broader scope and less implementation details, like naming or mandatory fields - Removed tables
Also update Makefile to build tools locally. Similar to open-telemetry/oteps#14.
Also update Makefile to build tools locally. Similar to open-telemetry/oteps#14.
Also update Makefile to build tools locally. Similar to open-telemetry/oteps#14.
Fixes #13.
Currently the only job is misspell check.