2015-02-17 18:02:41 +01:00
|
|
|
sudo: false
|
2017-09-13 03:29:40 +02:00
|
|
|
dist: trusty
|
|
|
|
|
group: stable
|
2015-02-17 18:02:41 +01:00
|
|
|
|
|
|
|
|
cache:
|
|
|
|
|
directories:
|
|
|
|
|
- $HOME/.ivy2/cache
|
2015-02-24 18:43:36 +01:00
|
|
|
- $HOME/.sbt/boot
|
2015-02-17 18:02:41 +01:00
|
|
|
|
2014-02-21 02:11:17 +01:00
|
|
|
language: scala
|
2014-08-22 09:53:26 +02:00
|
|
|
|
2014-02-21 02:11:17 +01:00
|
|
|
jdk:
|
2016-10-07 17:21:30 +02:00
|
|
|
- oraclejdk8
|
2014-08-22 09:53:26 +02:00
|
|
|
|
2016-07-07 10:35:30 +02:00
|
|
|
matrix:
|
|
|
|
|
fast_finish: true
|
|
|
|
|
|
2014-08-22 09:53:26 +02:00
|
|
|
env:
|
|
|
|
|
matrix:
|
2017-08-10 17:23:15 +02:00
|
|
|
- SBT_CMD=";mimaReportBinaryIssues ;scalafmt::test ;test:scalafmt::test ;sbt:scalafmt::test ;test:compile ;mainSettingsProj/test ;safeUnitTests ;otherUnitTests"
|
2016-01-08 21:53:53 +01:00
|
|
|
- SBT_CMD="scripted actions/*"
|
2017-05-03 00:59:51 +02:00
|
|
|
- SBT_CMD="scripted apiinfo/* compiler-project/* ivy-deps-management/*"
|
2017-04-05 01:22:09 +02:00
|
|
|
- SBT_CMD="scripted dependency-management/*1of4"
|
|
|
|
|
- SBT_CMD="scripted dependency-management/*2of4"
|
|
|
|
|
- SBT_CMD="scripted dependency-management/*3of4"
|
|
|
|
|
- SBT_CMD="scripted dependency-management/*4of4"
|
2017-05-03 13:55:37 +02:00
|
|
|
- SBT_CMD="scripted java/* package/* reporter/* run/* project-load/*"
|
|
|
|
|
- SBT_CMD="scripted project/*1of2"
|
2017-09-11 06:34:14 +02:00
|
|
|
- SBT_CMD="scripted project/*2of2 server/*"
|
2017-08-26 21:35:34 +02:00
|
|
|
- SBT_CMD="scripted source-dependencies/*1of3"
|
|
|
|
|
- SBT_CMD="scripted source-dependencies/*2of3"
|
|
|
|
|
- SBT_CMD="scripted source-dependencies/*3of3"
|
2016-01-08 21:53:53 +01:00
|
|
|
- SBT_CMD="scripted tests/*"
|
2016-04-24 20:23:48 +02:00
|
|
|
- SBT_CMD="repoOverrideTest:scripted dependency-management/*"
|
2014-08-22 09:53:26 +02:00
|
|
|
|
2014-02-21 02:11:17 +01:00
|
|
|
notifications:
|
|
|
|
|
email:
|
2016-04-29 18:37:34 +02:00
|
|
|
- sbt-dev-bot@googlegroups.com
|
2015-02-17 18:02:41 +01:00
|
|
|
|
2017-09-13 03:29:40 +02:00
|
|
|
# Undo _JAVA_OPTIONS environment variable
|
|
|
|
|
before_script:
|
|
|
|
|
- _JAVA_OPTIONS=
|
|
|
|
|
|
2015-02-17 18:02:41 +01:00
|
|
|
script:
|
2017-05-03 00:59:51 +02:00
|
|
|
# It doesn't need that much memory because compile and run are forked
|
|
|
|
|
- sbt -J-XX:ReservedCodeCacheSize=128m -J-Xmx800M -J-Xms800M -J-server "$SBT_CMD"
|
2014-08-22 11:41:21 +02:00
|
|
|
|
2016-07-15 00:34:09 +02:00
|
|
|
before_cache:
|
|
|
|
|
- find $HOME/.ivy2 -name "ivydata-*.properties" -print -delete
|
|
|
|
|
- find $HOME/.sbt -name "*.lock" -print -delete
|