From 7091b7b51852f819c6c017bf2ac501999e3076bc Mon Sep 17 00:00:00 2001 From: Chin Date: Sun, 11 Jan 2015 12:33:44 -0500 Subject: [PATCH 1/2] Add appveyor.yml --- appveyor.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 appveyor.yml diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 000000000..2000951a6 --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,17 @@ +# it seems that Qt is only installed by default on unstable os at the moment +os: unstable + +# a depth of 50 should be enough (travis uses the same setting) +clone_depth: 50 + +environment: + QTDIR: C:\Qt\5.4\msvc2013_opengl + +install: + - git submodule update --init --recursive + +before_build: + - mkdir build + - cd build + - cmake .. + - cd .. From 8437aff16bd566f975dba0c798345f1784577ad1 Mon Sep 17 00:00:00 2001 From: chinhodado Date: Sun, 11 Jan 2015 13:29:39 -0500 Subject: [PATCH 2/2] AppVeyor: Use shallow clone --- appveyor.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 2000951a6..83d3b900e 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,8 +1,8 @@ # it seems that Qt is only installed by default on unstable os at the moment os: unstable -# a depth of 50 should be enough (travis uses the same setting) -clone_depth: 50 +# shallow clone +clone_depth: 1 environment: QTDIR: C:\Qt\5.4\msvc2013_opengl