summaryrefslogtreecommitdiff
path: root/appveyor.yml
diff options
context:
space:
mode:
authoriphydf <iphydf@users.noreply.github.com>2018-09-16 13:58:57 +0000
committeriphydf <iphydf@users.noreply.github.com>2018-09-16 14:47:23 +0000
commit2abc00693cc99f277c7c8fe1a201ec33becb01f1 (patch)
treea3cc744be848b2142df009dd9398f92b4f195434 /appveyor.yml
parent889e89b3dda722314737c42575c2db4056b3e887 (diff)
Format yaml files according to yamllint's requirements.
Also remove branch filter for appveyor. We only have a single branch in every repository. Development happens in forks.
Diffstat (limited to 'appveyor.yml')
-rw-r--r--appveyor.yml45
1 files changed, 21 insertions, 24 deletions
diff --git a/appveyor.yml b/appveyor.yml
index c921d761..28744535 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -1,34 +1,31 @@
1---
1cache: 2cache:
2- '%APPDATA%\downloads' 3 - '%APPDATA%\downloads'
3 4
4install: 5install:
5# TODO(iphydf): Remove this when appveyor gets curl back, which it should have 6 # TODO(iphydf): Remove this when appveyor gets curl back, which it should
6# according to https://www.appveyor.com/docs/how-to/download-file/. 7 # have according to https://www.appveyor.com/docs/how-to/download-file/.
7- choco install curl 8 - choco install curl
8- refreshenv 9 - refreshenv
9- if not exist %APPDATA%\downloads mkdir %APPDATA%\downloads 10 - if not exist %APPDATA%\downloads mkdir %APPDATA%\downloads
10- cd third_party 11 - cd third_party
11# libsodium 12 # libsodium
12- mkdir libsodium && cd libsodium 13 - mkdir libsodium && cd libsodium
13- if not exist %APPDATA%\downloads\libsodium.zip curl -L https://download.libsodium.org/libsodium/releases/libsodium-1.0.16-msvc.zip -o %APPDATA%\downloads\libsodium.zip 14 - if not exist %APPDATA%\downloads\libsodium.zip curl -L https://download.libsodium.org/libsodium/releases/libsodium-1.0.16-msvc.zip -o %APPDATA%\downloads\libsodium.zip
14- unzip %APPDATA%\downloads\libsodium.zip 15 - unzip %APPDATA%\downloads\libsodium.zip
15- cd .. 16 - cd ..
16# pthreads-win32 17 # pthreads-win32
17- mkdir pthreads-win32 && cd pthreads-win32 18 - mkdir pthreads-win32 && cd pthreads-win32
18- if not exist %APPDATA%\downloads\pthreads.zip curl -L ftp://sourceware.org/pub/pthreads-win32/pthreads-w32-2-9-1-release.zip -o %APPDATA%\downloads\pthreads.zip 19 - if not exist %APPDATA%\downloads\pthreads.zip curl -L ftp://sourceware.org/pub/pthreads-win32/pthreads-w32-2-9-1-release.zip -o %APPDATA%\downloads\pthreads.zip
19- unzip %APPDATA%\downloads\pthreads.zip 20 - unzip %APPDATA%\downloads\pthreads.zip
20- cd ../.. 21 - cd ../..
21 22
22before_build: 23before_build:
23- cmake . -DBOOTSTRAP_DAEMON=OFF -DENABLE_SHARED=OFF -DBUILD_TOXAV=OFF 24 - cmake . -DBOOTSTRAP_DAEMON=OFF -DENABLE_SHARED=OFF -DBUILD_TOXAV=OFF
24 25
25build: 26build:
26 project: INSTALL.vcxproj 27 project: INSTALL.vcxproj
27 28
28# TODO(iphydf): Tests all segfault on Windows at the moment. 29# TODO(iphydf): Tests all segfault on Windows at the moment.
29#test_script: 30# test_script:
30#- ctest -C Debug 31# - ctest -C Debug
31
32branches:
33 only:
34 - master