mirror of
https://github.com/pgpainless/pgpainless.git
synced 2024-11-29 15:52:08 +01:00
Add travis.yml
This commit is contained in:
parent
e7a6df5a87
commit
fc3e0a58a8
1 changed files with 26 additions and 0 deletions
26
.travis.yml
Normal file
26
.travis.yml
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
language: android
|
||||||
|
android:
|
||||||
|
components:
|
||||||
|
- android-9
|
||||||
|
jdk:
|
||||||
|
- oraclejdk8
|
||||||
|
sudo: false
|
||||||
|
cache:
|
||||||
|
directories:
|
||||||
|
- $HOME/.m2
|
||||||
|
|
||||||
|
before_install:
|
||||||
|
- export GRADLE_VERSION=4.6
|
||||||
|
- 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"
|
||||||
|
|
||||||
|
install: gradle assemble --stacktrace
|
||||||
|
script: gradle check --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
|
||||||
|
- if [[ "$JAVAC_VERSION" = javac\ 1.8.* ]]; then gradle jacocoTestReport; fi
|
||||||
|
|
Loading…
Reference in a new issue