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:
|
2019-05-08 11:34:40 +02:00
|
|
|
- android-19
|
2015-04-03 19:15:35 +02:00
|
|
|
jdk:
|
Make java(c|doc) use --release when available
In order to truely stay Java 8 compatible, declaring a source and
target compatiblity is not sufficient. Source compatiblity means that
the input, i.e. the code written in Java is compatible with that
particular version of the Java Language Specification (JLS). And
target compatibitliy means that the produced Java bytecode is
compatible with that particular version of the Java Virtual Machine
Specificiation (JVMS).
But there is actually a third dimension: the runtime
library (rt.jar). If signatures of methods change over java releases
within the runtime library, then the produced bytecode, may contain
calls to methods that do not exist with that exact same signature in
older java versions.
For example the family of Buffer subclasses changed the return value
of certain functions, for example flip() to not return Buffer, but the
concrete type of the current instance, e.g. CharBuffer.
If we compile now with a newer JDK, where the return type is
CharBuffer and not Buffer, then executing on an older JDK, where the
return type is Buffer, then we get java.lang.NoSuchMethodError(s)
thrown at us.
Fixes SMACK-651.
2020-04-24 10:04:30 +02:00
|
|
|
- openjdk8
|
2019-07-19 15:12:09 +02:00
|
|
|
- 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/
|
2015-08-12 10:50:30 +02:00
|
|
|
cache:
|
|
|
|
directories:
|
2019-07-19 23:34:21 +02:00
|
|
|
- $HOME/.gradle/caches/
|
|
|
|
- $HOME/.android/build-cache
|
|
|
|
- $HOME/.m2
|
2015-04-03 19:15:35 +02:00
|
|
|
|
2015-09-24 11:10:26 +02:00
|
|
|
before_install:
|
2020-02-23 18:32:37 +01:00
|
|
|
- export GRADLE_VERSION=6.2
|
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
|
2019-07-22 08:47:37 +02:00
|
|
|
packages:
|
|
|
|
- graphviz
|
2019-07-19 20:34:27 +02:00
|
|
|
|
2015-09-24 11:10:26 +02:00
|
|
|
install: gradle assemble --stacktrace
|
2019-07-19 14:23:53 +02:00
|
|
|
|
|
|
|
# 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
|
2019-09-01 17:15:51 +02:00
|
|
|
# Also run javadocAll to ensure it works.
|
2020-05-25 11:14:47 +02:00
|
|
|
script:
|
|
|
|
- |
|
|
|
|
JAVAC_MAJOR_VERSION=$(javac -version | sed -E 's/javac ([[:digit:]]+).*/\1/')
|
|
|
|
GRADLE_TASKS=()
|
|
|
|
GRADLE_TASKS+=(check)
|
|
|
|
GRADLE_TASKS+=(publishToMavenLocal)
|
|
|
|
if [[ ${JAVAC_MAJOR_VERSION} -ge 11 ]]; then
|
|
|
|
GRADLE_TASKS+=(javadocAll)
|
|
|
|
fi
|
|
|
|
gradle ${GRADLE_TASKS[@]} --stacktrace
|
2014-08-01 10:34:47 +02:00
|
|
|
|
2015-03-12 15:44:53 +01:00
|
|
|
after_success:
|
2017-04-25 17:13:45 +02:00
|
|
|
- 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
|