mirror of
https://github.com/revanced/Apktool.git
synced 2024-11-07 05:06:59 +01:00
35 lines
576 B
YAML
35 lines
576 B
YAML
env:
|
|
global:
|
|
- TERM=dumb
|
|
- GROOVY_TURN_OFF_JAVA_WARNINGS=true
|
|
|
|
language: java
|
|
|
|
dist: trusty
|
|
|
|
matrix:
|
|
include:
|
|
- os: linux
|
|
jdk: openjdk8
|
|
- os: linux
|
|
jdk: oraclejdk8
|
|
- os: osx
|
|
osx_image: xcode9.2
|
|
- os: windows
|
|
language: shell
|
|
cache:
|
|
directories:
|
|
- $HOME/.gradle/caches/
|
|
- $HOME/.gradle/wrapper/
|
|
|
|
install:
|
|
- chmod +x ./scripts/travis-ci/clean-tests.sh
|
|
- ./scripts/travis-ci/clean-tests.sh
|
|
|
|
script:
|
|
- chmod +x ./scripts/travis-ci/run-tests.sh
|
|
- ./scripts/travis-ci/run-tests.sh
|
|
|
|
branches:
|
|
only:
|
|
- master |