forked from GoogleCloudPlatform/google-cloud-dotnet-debugger
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappveyor.yml
More file actions
35 lines (25 loc) · 656 Bytes
/
appveyor.yml
File metadata and controls
35 lines (25 loc) · 656 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
version: 1.0.{build}
branches:
only:
- master
image: Visual Studio 2017
# Pull down all submodule code
init:
- git config --global core.autocrlf input
# This change was recommended by the AppVeyor team to save space.
- rmdir C:\cygwin /s /q
- rmdir C:\QT /s /q
# Cache the third party code as it can take 20+ min to build
cache:
- third_party
platform: x64
configuration: Debug
# Build dependencies and code
build_script:
- git submodule update --init --recursive
- build-deps.cmd %CONFIGURATION%
- build.cmd %CONFIGURATION%
test_script:
- bash run_unit_tests.sh
# Nothing to deplopy, we are just running tests
deploy: off