You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by gt...@apache.org on 2018/10/08 11:32:10 UTC

activemq-artemis git commit: ARTEMIS-1684 remove native libs before ci build to avoid aio resource constraints failing tests in error

Repository: activemq-artemis
Updated Branches:
  refs/heads/master 2e96d9b5c -> 65feda8e9


ARTEMIS-1684 remove native libs before ci build to avoid aio resource constraints failing tests in error


Project: http://git-wip-us.apache.org/repos/asf/activemq-artemis/repo
Commit: http://git-wip-us.apache.org/repos/asf/activemq-artemis/commit/65feda8e
Tree: http://git-wip-us.apache.org/repos/asf/activemq-artemis/tree/65feda8e
Diff: http://git-wip-us.apache.org/repos/asf/activemq-artemis/diff/65feda8e

Branch: refs/heads/master
Commit: 65feda8e925de5e070d7ad31c80a5aa8e788ea01
Parents: 2e96d9b
Author: gtully <ga...@gmail.com>
Authored: Mon Oct 8 12:31:40 2018 +0100
Committer: gtully <ga...@gmail.com>
Committed: Mon Oct 8 12:31:40 2018 +0100

----------------------------------------------------------------------
 .travis.yml | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/65feda8e/.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