From 4c97f93ad20d924972f614149b493c430aea8985 Mon Sep 17 00:00:00 2001 From: Camilo Roca Date: Wed, 9 Oct 2019 23:56:47 +0200 Subject: [PATCH 1/2] version bumped --- project.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project.clj b/project.clj index d3e0613..2bc253f 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject carocad/parcera "0.1.3" +(defproject carocad/parcera "0.2.0" :description "Grammar-based Clojure(script) parser" :url "https://github.com/carocad/parcera" :license {:name "LGPLv3" From 3e1a0f603d4a5045f0052fe02f1a9e23fcc9e1cc Mon Sep 17 00:00:00 2001 From: Camilo Roca Date: Thu, 10 Oct 2019 00:01:24 +0200 Subject: [PATCH 2/2] dont leave stage to avoid downloading dependencies again --- .travis.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index 3c80436..f701dd3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,15 +4,11 @@ jdk: jobs: include: - - stage: JvmTests + - stage: Tests script: - lein do clean, compile, check, eastwood - lein trampoline test - - - stage: JsTests - script: - - nvm install 10.10 && nvm use 10.10 - - lein trampoline cljsbuild test + - nvm install 10.10 && nvm use 10.10 && lein trampoline cljsbuild test - stage: Benchmark if: branch = master