CloudI / cloudi_api_java

Java CloudI API

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Enable Travis CI

varnerac opened this issue · comments

Once it's enabled, I'll go in and update the README.md with a Travis CI badge to see if it's building successful.

The build works, but the results seem a bit odd to me https://travis-ci.org/CloudI/cloudi_api_java

It looks okay to me. Travis CI hides the content during the install phase but you can expand it and see the compilation phase. The test phase shows nothing because there are no unit tests and all of the source code was compiled earlier. If there are tests to throw in, I can add them. It does build the source files.

[WARNING] File encoding has not been set, using platform encoding UTF-8, i.e. build is platform dependent!
[INFO] Compiling 2 source files to /home/travis/build/CloudI/cloudi_api_java/target/classes

The java tests I have used are runtime integration tests, not unit tests. It is difficult to test in isolation without reimplementing much of what is provided in the main repository, so I have avoided doing that.

Cool. I'm going to close this since Travis CI runs.