From 917f4c21c1fde63e3bca4e4b2dac92946e190782 Mon Sep 17 00:00:00 2001 From: Adriaan Moors Date: Tue, 12 Nov 2013 16:29:08 -0800 Subject: [PATCH 1/2] Bump to partest 1.0.0-RC7 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 56e41378f..76f6b644c 100644 --- a/build.sbt +++ b/build.sbt @@ -86,7 +86,7 @@ TestKeys.includeTestDependencies := true libraryDependencies ++= Seq("junit" % "junit" % "4.11" % "test", "com.novocode" % "junit-interface" % "0.10" % "test") // default -TestKeys.partestVersion := "1.0.0-RC6" +TestKeys.partestVersion := "1.0.0-RC7" // the actual partest the interface calls into -- must be binary version close enough to ours // so that it can link to the compiler/lib we're using (testing) From 3181d75613a6128ab0a778569f71368e17d145e6 Mon Sep 17 00:00:00 2001 From: Adriaan Moors Date: Tue, 12 Nov 2013 16:29:20 -0800 Subject: [PATCH 2/2] Set up travis validation. --- .travis.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 000000000..d665c7054 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,13 @@ +language: scala +script: + - sbt ++$TRAVIS_SCALA_VERSION 'set concurrentRestrictions in Global += Tags.limit(Tags.Compile, 2)' compile test:compile + - sbt ++$TRAVIS_SCALA_VERSION 'set concurrentRestrictions in Global += Tags.limit(Tags.Test, 1)' test +scala: + - 2.10.3 + - 2.11.0-M6 +jdk: + - oraclejdk6 + - openjdk7 +notifications: + email: + - adriaan.moors@typesafe.com \ No newline at end of file