From 8f8740d3099430608c42ef3ce786631f07262056 Mon Sep 17 00:00:00 2001 From: Grzegorz Kossakowski Date: Fri, 8 Jan 2016 21:53:53 +0100 Subject: [PATCH] Make the intent of the env variable clearer in travis configuration. Cherry-pick from e738bc3f7314782dc5e09a2c5f76e9496bd1d8be. --- .travis.yml | 48 ++++++++++++++++++++++++------------------------ 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/.travis.yml b/.travis.yml index 0bc6e859b..444bbc39a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,29 +15,29 @@ jdk: env: matrix: - - SCRIPTED_TEST="mima-report-binary-issues" - - SCRIPTED_TEST="safeUnitTests" - - SCRIPTED_TEST="otherUnitTests" - - SCRIPTED_TEST="scripted actions/*" - - SCRIPTED_TEST="scripted apiinfo/*" - - SCRIPTED_TEST="scripted compiler-project/*" - - SCRIPTED_TEST="scripted dependency-management/*1of2" - - SCRIPTED_TEST="scripted dependency-management/*2of2" - - SCRIPTED_TEST="scripted ivy-deps-management/*" - - SCRIPTED_TEST="scripted java/*" - - SCRIPTED_TEST="scripted package/*" - - SCRIPTED_TEST="scripted project/*1of2" - - SCRIPTED_TEST="scripted project/*2of2" - - SCRIPTED_TEST="scripted reporter/*" - - SCRIPTED_TEST="scripted run/*" - - SCRIPTED_TEST="scripted source-dependencies/*1of3" - - SCRIPTED_TEST="scripted source-dependencies/*2of3" - - SCRIPTED_TEST="scripted source-dependencies/*3of3" - - SCRIPTED_TEST="scripted tests/*" - - SCRIPTED_TEST="scripted project-load/*" - - SCRIPTED_TEST="checkBuildScala211" -# - SCRIPTED_TEST="mavenResolverPluginTest:scripted dependency-management/*1of2 project/transitive-plugins" -# - SCRIPTED_TEST="mavenResolverPluginTest:scripted dependency-management/*2of2" + - SBT_CMD="mima-report-binary-issues" + - SBT_CMD="safeUnitTests" + - SBT_CMD="otherUnitTests" + - SBT_CMD="scripted actions/*" + - SBT_CMD="scripted apiinfo/*" + - SBT_CMD="scripted compiler-project/*" + - SBT_CMD="scripted dependency-management/*1of2" + - SBT_CMD="scripted dependency-management/*2of2" + - SBT_CMD="scripted ivy-deps-management/*" + - SBT_CMD="scripted java/*" + - SBT_CMD="scripted package/*" + - SBT_CMD="scripted project/*1of2" + - SBT_CMD="scripted project/*2of2" + - SBT_CMD="scripted reporter/*" + - SBT_CMD="scripted run/*" + - SBT_CMD="scripted source-dependencies/*1of3" + - SBT_CMD="scripted source-dependencies/*2of3" + - SBT_CMD="scripted source-dependencies/*3of3" + - SBT_CMD="scripted tests/*" + - SBT_CMD="scripted project-load/*" + - SBT_CMD="checkBuildScala211" +# - SBT_CMD="mavenResolverPluginTest:scripted dependency-management/*1of2 project/transitive-plugins" +# - SBT_CMD="mavenResolverPluginTest:scripted dependency-management/*2of2" notifications: email: @@ -45,7 +45,7 @@ notifications: - joshua.suereth@typesafe.com script: - - sbt -J-XX:ReservedCodeCacheSize=128m "$SCRIPTED_TEST" + - sbt -J-XX:ReservedCodeCacheSize=128m "$SBT_CMD" # Tricks to avoid unnecessary cache updates - find $HOME/.sbt -name "*.lock" | xargs rm