-
Notifications
You must be signed in to change notification settings - Fork 3.7k
ARROW-102: Add java support to Travis CI #63
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
Conversation
Note that some unit tests currently fail. For those to pass, JVM forked for JUnit should need around 3GB of memory which I believe is not possible with Travis CI. |
@StevenMPhillips @jacques-n will you be able to fix the Travis CI failure if I merge this? Perhaps we should wait util we have a patch fixing the build so that not all other PRs start having failed Java builds |
76f1fdb
to
a02ecc4
Compare
Add java support to Travis CI using oracle JDK7 on a Linux host.
a02ecc4
to
25903ac
Compare
@@ -12,7 +12,6 @@ addons: | |||
- gcc-4.9 # Needed for C++11 | |||
- g++-4.9 # Needed for C++11 | |||
- gdb | |||
- gcov |
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 removed gcov because travis cannot find the package. I checked on packages.ubuntu.com and a search shows that gcov is part of the gcc package.
I believe this is an already existing issue with travis, which was introduced when dist was changed from trusty to precise in commit 5d12999 (the Arrow page on github shows error as Travis badge)
+1, merging this. |
Oops, looks like this is already in, @laurentgo can you close the PR? 7035467 |
Closed (merged in 7035467) |
This patch removes compiler warning suppresses, fixes signed-unsigned integer comparisons, and scrubs most usages of `size_t` from the codebase in favor of signed integer types. Author: Wes McKinney <wesm@apache.org> Closes apache#63 from wesm/PARQUET-518 and squashes the following commits: ba74e14 [Wes McKinney] Fix unsigned int comparison after rebase b6adc51 [Wes McKinney] Scrub more usages of size_t 242ca3f [Wes McKinney] Disable -Wno-sign-compare and do some scrubbing
This patch removes compiler warning suppresses, fixes signed-unsigned integer comparisons, and scrubs most usages of `size_t` from the codebase in favor of signed integer types. Author: Wes McKinney <wesm@apache.org> Closes apache#63 from wesm/PARQUET-518 and squashes the following commits: ba74e14 [Wes McKinney] Fix unsigned int comparison after rebase b6adc51 [Wes McKinney] Scrub more usages of size_t 242ca3f [Wes McKinney] Disable -Wno-sign-compare and do some scrubbing Change-Id: I749dba3f989a0b198924b2a449451091b09595b1
This patch removes compiler warning suppresses, fixes signed-unsigned integer comparisons, and scrubs most usages of `size_t` from the codebase in favor of signed integer types. Author: Wes McKinney <wesm@apache.org> Closes apache#63 from wesm/PARQUET-518 and squashes the following commits: ba74e14 [Wes McKinney] Fix unsigned int comparison after rebase b6adc51 [Wes McKinney] Scrub more usages of size_t 242ca3f [Wes McKinney] Disable -Wno-sign-compare and do some scrubbing Change-Id: I749dba3f989a0b198924b2a449451091b09595b1
This patch removes compiler warning suppresses, fixes signed-unsigned integer comparisons, and scrubs most usages of `size_t` from the codebase in favor of signed integer types. Author: Wes McKinney <wesm@apache.org> Closes apache#63 from wesm/PARQUET-518 and squashes the following commits: ba74e14 [Wes McKinney] Fix unsigned int comparison after rebase b6adc51 [Wes McKinney] Scrub more usages of size_t 242ca3f [Wes McKinney] Disable -Wno-sign-compare and do some scrubbing Change-Id: I749dba3f989a0b198924b2a449451091b09595b1
This patch removes compiler warning suppresses, fixes signed-unsigned integer comparisons, and scrubs most usages of `size_t` from the codebase in favor of signed integer types. Author: Wes McKinney <wesm@apache.org> Closes apache#63 from wesm/PARQUET-518 and squashes the following commits: ba74e14 [Wes McKinney] Fix unsigned int comparison after rebase b6adc51 [Wes McKinney] Scrub more usages of size_t 242ca3f [Wes McKinney] Disable -Wno-sign-compare and do some scrubbing Change-Id: I749dba3f989a0b198924b2a449451091b09595b1
* Support casting boolean to bigint (apache#60) * remove log4j as it's not used (apache#61) Signed-off-by: Yuan Zhou <yuan.zhou@intel.com> * Add stripe iteration support for batch_size reading in the ORC Scanner (apache#63) * Install re2 headers (apache#66) Co-authored-by: PHILO-HE <feilong.he@intel.com> Co-authored-by: zhixingheyi-tian <xiangxiang.shen@intel.com>
Add java support to Travis CI using oracle JDK7 on a Linux host.