ARTEMIS-1684 remove native libs before ci build to avoid aio resource constraints failing tests in error
(cherry picked from commit 65feda8e925de5e070d7ad31c80a5aa8e788ea01) Project: http://git-wip-us.apache.org/repos/asf/activemq-artemis/repo Commit: http://git-wip-us.apache.org/repos/asf/activemq-artemis/commit/6b894a5d Tree: http://git-wip-us.apache.org/repos/asf/activemq-artemis/tree/6b894a5d Diff: http://git-wip-us.apache.org/repos/asf/activemq-artemis/diff/6b894a5d Branch: refs/heads/2.6.x Commit: 6b894a5d5164bd1aee05846a3823c369acaebfd5 Parents: bc0d6f6 Author: gtully <[email protected]> Authored: Mon Oct 8 12:31:40 2018 +0100 Committer: Clebert Suconic <[email protected]> Committed: Thu Oct 11 14:59:36 2018 -0400 ---------------------------------------------------------------------- .travis.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/6b894a5d/.travis.yml ---------------------------------------------------------------------- diff --git a/.travis.yml b/.travis.yml index e554543..a47f07c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,7 +3,10 @@ language: java install: true # clean out Artemis artifacts from the cache -before_install: rm -rf $HOME/.m2/repository/org/apache/activemq/artemis-* +# whack native libs such that LibAIO is not used till we figure out the resource constraints +before_install: +- rm -rf $HOME/.m2/repository/org/apache/activemq/artemis-* +- rm artemis-native/bin/libartemis-native-* # use 'install' so smoke-tests will work # use '-Pextra-tests' to ensure extra-tests compiles even though they won't actually run
