You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'd highly recommend to use Makefile instead so we can even add this to our CI.
To add this to the CI, you just need to create a Makefile that has "test" as the target, and add the directory path to the target in .travis.yaml below:
The text was updated successfully, but these errors were encountered:
disa6302
changed the title
I'd highly recommend to use Makefile instead so we can even add this to our CI.
Use Makefile instead to add consumer to our CI
Oct 15, 2020
The makefile works on systems. However, travis has a log limit https://docs.travis-ci.com/user/common-build-problems/#log-length-exceeded, which causes a problem since mvn package generates a lot of logs. This error can be solved using mvn package -q which will set verbosity to error. However, due to no logs for prolonged period, travis build fails with the following error: Build times out because no output was received .
We need to look into the best way to add the consumer-java to .travis.yml.
I'd highly recommend to use Makefile instead so we can even add this to our CI.
To add this to the CI, you just need to create a Makefile that has "test" as the target, and add the directory path to the target in .travis.yaml below:
amazon-kinesis-video-streams-demos/.travis.yml
Line 17 in e246e81
It's definitely not the best test, but it can add some sanity check at least.
Originally posted by @lherman-cs in #64 (comment)
The text was updated successfully, but these errors were encountered: