From 2df0b911f2cb73ee05857817a0f381328a04b727 Mon Sep 17 00:00:00 2001 From: "Michael S. Klishin" Date: Sat, 16 Jun 2012 06:47:59 +0400 Subject: [PATCH 1/2] Revert "No more need for a separate CI profile" This reverts commit da45e6140c512d69a652d4bb9ec30cdd0b9cf5e3. There is something funky going on with either Sonatype snapshots or Clojure master snapshots publishing --- project.clj | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/project.clj b/project.clj index 76f0153..9f4b34e 100644 --- a/project.clj +++ b/project.clj @@ -34,7 +34,8 @@ [org.clojure/tools.cli "0.2.1" :exclusions [org.clojure/clojure]] [org.clojure/core.cache "0.5.0" :exclusions [org.clojure/clojure]] [ring/ring-core "1.1.0"]]}} - :aliases {"all" ["with-profile" "dev:dev,1.4:dev,1.5"]} + :aliases {"all" ["with-profile" "dev:dev,1.4:dev,1.5"] + "ci" ["with-profile" "dev:dev,1.4"]} :repositories {"sonatype" {:url "http://oss.sonatype.org/content/repositories/releases" :snapshots false :releases {:checksum :fail :update :always}} From e34340bbaa7fdfe5f73e57bb1e0a95ee471eb894 Mon Sep 17 00:00:00 2001 From: "Michael S. Klishin" Date: Sat, 16 Jun 2012 06:48:49 +0400 Subject: [PATCH 2/2] Back to CI profile for CI --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index ff83892..6d7aa0b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,7 +2,7 @@ language: clojure lein: lein2 before_script: - ./bin/ci/before_script.sh -script: lein2 javac && lein2 all test +script: lein2 javac && lein2 ci test jdk: - openjdk6 - openjdk7