Apktool/.travis.yml
Connor Tumbleson cfea3e0831 build: initial attempt at getting travis windows support
build: force windows onto the bash environment

build: update permission (+x) of clean-test file

build: "bat" instead of "exe" extension

build: attempt to support long-path names on windows

build: another attempt at long filepaths on windows

build: force +x on scripts prior to execution

build: exit with return code of last command

build: dump out current path

build: dump out current path - part 2

fix: remove 5 chars from path to drop down from 260 windows max path

build: correct gradlew.bat path and remove unneeded lines

fix: remove long path global configuration

fix: restore PATH setting for windows env

build: PATH resets between scripts, fix for windows
2019-01-09 17:43:40 -05:00

35 lines
575 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: bash
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