-
Notifications
You must be signed in to change notification settings - Fork 15
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 OTEL smoke test #268
Add OTEL smoke test #268
Conversation
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.
Looks good, thanks for the PR 👍
We should try to remove those two gradle scripts and reduce CI run time
Makefile
Outdated
@@ -7,11 +7,11 @@ assemble: | |||
|
|||
.PHONY: build | |||
build: | |||
./gradlew build -x :smoke-tests:test --stacktrace | |||
./gradlew build -x :smoke-tests:test --debug --stacktrace |
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.
is this needed? I don't like to run debug locally. As below in the smoke-test
target
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.
have removed the debug option
gradle/dependencies.gradle
Outdated
@@ -0,0 +1,97 @@ | |||
def groovyVer = "2.5.11" |
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.
Do we need this file and the java.gradle
?
in OTEL repo these are reused for other modules. since we have only smoke tests module we could copy there only what is needed. For instance we define versions in our root build script.
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.
@pavolloffay have removed dependencies.gradle but not java.gradle.
@samarth-gupta-traceable the next step will be to modify the apps to include |
Updates #217
Description
Please include a summary of the change, motivation and context.
Testing
Please describe the tests that you ran to verify your changes. Please summarize what did you test and what needs to be tested e.g. deployed and tested helm chart locally.
ran ./gradlew build locally
Documentation
Make sure that you have documented corresponding changes in this repository or hypertrace docs repo if required.