activemq-artemis/.travis.yml

21 lines
524 B
YAML
Raw Normal View History

2018-02-15 09:53:39 -05:00
sudo: false
language: java
install: true
# clean out Artemis artifacts from the cache
before_install: rm -rf $HOME/.m2/repository/org/apache/activemq/artemis-*
# use 'install' so smoke-tests will work
# use '-Pextra-tests' to ensure extra-tests compiles even though they won't actually run
script:
- set -e
- mvn -Pfast-tests -Pextra-tests -B install -q
- cd examples
- mvn install -Prelease install -B -q
2018-02-15 09:53:39 -05:00
cache:
directories:
- $HOME/.m2
2018-03-09 12:39:41 -05:00
before_cache:
- rm -rf $HOME/.m2/repository/org/apache/activemq/artemis-*