Smack/.travis.yml

45 lines
1.2 KiB
YAML
Raw Permalink Normal View History

2014-10-06 17:39:04 +02:00
language: android
2019-07-19 15:06:28 +02:00
dist: trusty
2014-10-06 17:39:04 +02:00
android:
components:
- android-19
jdk:
- oraclejdk8
- openjdk9
- openjdk11
2019-07-19 23:34:21 +02:00
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
- rm -fr $HOME/.gradle/caches/*/plugin-resolution/
cache:
directories:
2019-07-19 23:34:21 +02:00
- $HOME/.gradle/caches/
- $HOME/.android/build-cache
- $HOME/.m2
2015-09-24 11:10:26 +02:00
before_install:
2019-07-19 14:16:19 +02:00
- export GRADLE_VERSION=5.5.1
2015-09-24 11:10:26 +02:00
- wget https://services.gradle.org/distributions/gradle-${GRADLE_VERSION}-all.zip
- unzip -q gradle-${GRADLE_VERSION}-all.zip
- export PATH="$(pwd)/gradle-${GRADLE_VERSION}/bin:$PATH"
2019-07-19 20:34:27 +02:00
addons:
apt:
update: true
packages:
- graphviz
2019-07-19 20:34:27 +02:00
2015-09-24 11:10:26 +02:00
install: gradle assemble --stacktrace
# Run the test suite and also install the artifacts in the local maven
# archive to additionaly test if artifact creation is
# functional. Which hasn't always be the case in the past, see
# 90cbcaebc7a89f4f771f733a33ac9f389df85be2
# Also run javadocAll to ensure it works.
script: gradle check publishToMavenLocal javadocAll --stacktrace
after_success:
- JAVAC_VERSION=$((javac -version) 2>&1)
# Only run jacocoRootReport in the Java 8 build
- if [[ "$JAVAC_VERSION" = javac\ 1.8.* ]]; then gradle jacocoRootReport coveralls; fi