From 65feda8e925de5e070d7ad31c80a5aa8e788ea01 Mon Sep 17 00:00:00 2001 From: gtully Date: Mon, 8 Oct 2018 12:31:40 +0100 Subject: [PATCH] ARTEMIS-1684 remove native libs before ci build to avoid aio resource constraints failing tests in error --- .travis.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index e5545434f7..a47f07caa5 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