summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSamy Pesse <samypesse@gmail.com>2016-05-20 19:23:51 +0200
committerSamy Pesse <samypesse@gmail.com>2016-05-20 19:23:51 +0200
commit86a65e528716ba68a395156c36d2ec560a42d7c1 (patch)
tree9970630d6a5127218ba340ab8d3994580918f471
parent956d301dd741754382fa5336e82d0b12af5e855d (diff)
downloadgitbook-86a65e528716ba68a395156c36d2ec560a42d7c1.zip
gitbook-86a65e528716ba68a395156c36d2ec560a42d7c1.tar.gz
gitbook-86a65e528716ba68a395156c36d2ec560a42d7c1.tar.bz2
Improve appveyor configuration
-rw-r--r--appveyor.yml8
1 files changed, 8 insertions, 0 deletions
diff --git a/appveyor.yml b/appveyor.yml
index b3cbea8..5d77555 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -9,10 +9,14 @@ environment:
- nodejs_version: "5"
- nodejs_version: "4"
+matrix:
+ fast_finish: true
+
# Install scripts. (runs after repo cloning)
install:
# Get the latest stable version of Node.js or io.js
- ps: Install-Product node $env:nodejs_version
+ - set CI=true
# install svgexport
- npm install svgexport -g
# install modules
@@ -28,3 +32,7 @@ test_script:
# Don't actually build.
build: off
+
+# Clone only last commit
+shallow_clone: true
+clone_depth: 1