summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorJoffrey BION <joffrey.bion@gmail.com>2017-01-20 23:13:38 +0100
committerJoffrey BION <joffrey.bion@gmail.com>2017-01-20 23:13:38 +0100
commitc814e2ef45d6347be17a5ee406057003dc3a9de4 (patch)
tree79fd31c143a67480827aab0acd362873e35d2738 /.travis.yml
parentRemove environment variables experiments (diff)
downloadseven-wonders-c814e2ef45d6347be17a5ee406057003dc3a9de4.tar.gz
seven-wonders-c814e2ef45d6347be17a5ee406057003dc3a9de4.tar.bz2
seven-wonders-c814e2ef45d6347be17a5ee406057003dc3a9de4.zip
Remove build matrix as we don't need a macOS build
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml8
1 files changed, 2 insertions, 6 deletions
diff --git a/.travis.yml b/.travis.yml
index 18a93fb1..15e70319 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,11 +1,7 @@
language: java
-matrix:
- include:
- - os: linux
- jdk: oraclejdk8 # The default JDK is 7 if unspecified, and we need 8
- - os: osx
- osx_image: xcode8 # other OSX images can't switch to JDK8, this one has it built-in
+jdk:
+ - oraclejdk8
# These files change at every build, and should not be cached
# https://docs.travis-ci.com/user/languages/java/#Caching
bgstack15