summaryrefslogtreecommitdiff
path: root/integration/test/resources/play-json/.travis.yml
diff options
context:
space:
mode:
authorNikolay Tatarinov <5min4eq.unity@gmail.com>2018-03-28 01:33:11 +0300
committerGitHub <noreply@github.com>2018-03-28 01:33:11 +0300
commit83aeb8976d90ad1637243953a9af37e6d4206c52 (patch)
tree346e52db0d80c7fb7bdab8013acb38ef8be55fbb /integration/test/resources/play-json/.travis.yml
parenta796f0a1381632560b6251a93466957319065966 (diff)
downloadmill-83aeb8976d90ad1637243953a9af37e6d4206c52.tar.gz
mill-83aeb8976d90ad1637243953a9af37e6d4206c52.tar.bz2
mill-83aeb8976d90ad1637243953a9af37e6d4206c52.zip
WIP: Play json build (#182)
* play json build * build progress * add check task * try to make play json js build * scalariform and mima plugins in separate files. check mima * better error message for mima compatibility check * fix scala 2.10 compilation * license headers support * add jmh support * fix reformat on compile; fix code validation; extract base module * remove scala 2.13 from cross versions * include play-json in integration tests * add example .travis.yml * bring back scala 2.13 support * make reformat target, not command * add release task * update mill version in travis.yml * update release script * update release process * add README.md for play json build
Diffstat (limited to 'integration/test/resources/play-json/.travis.yml')
-rw-r--r--integration/test/resources/play-json/.travis.yml29
1 files changed, 29 insertions, 0 deletions
diff --git a/integration/test/resources/play-json/.travis.yml b/integration/test/resources/play-json/.travis.yml
new file mode 100644
index 00000000..e045541b
--- /dev/null
+++ b/integration/test/resources/play-json/.travis.yml
@@ -0,0 +1,29 @@
+language: scala
+sudo: required
+dist: trusty
+
+scala:
+- 2.13.0-M3
+- 2.12.4
+- 2.11.12
+- 2.10.7
+
+jdk:
+- oraclejdk8
+- oraclejdk9
+
+matrix:
+ exclude:
+ - scala: 2.10.7
+ jdk: oraclejdk9
+ - scala: 2.11.12
+ jdk: oraclejdk9
+
+script:
+ - curl -L -o ~/bin/mill https://github.com/lihaoyi/mill/releases/download/0.1.7/0.1.7-8-b913c6 && chmod +x ~/bin/mill
+ - export PATH=~/bin/mill:$PATH
+ - mill all validateCode reportBinaryIssues __[$TRAVIS_SCALA_VERSION].test
+
+cache:
+ directories:
+ - $HOME/.coursier