forked from google/breakpad
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathappveyor.yml
More file actions
35 lines (29 loc) · 835 Bytes
/
appveyor.yml
File metadata and controls
35 lines (29 loc) · 835 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
image: Visual Studio 2015
shallow_clone: true
clone_depth: 1
install:
- cinst qbs
- qbs setup-toolchains --detect
- qbs config defaultProfile MSVC2015-x86
before_build:
- ps: $env:PROJECT_REV = If ($env:APPVEYOR_REPO_TAG_NAME) {$env:APPVEYOR_REPO_TAG_NAME} Else {$env:APPVEYOR_REPO_COMMIT}
build_script:
- qbs install --install-root dist -p breakpad_client debug
- qbs install --install-root dist release
after_build:
- ps: tree /F dist
artifacts:
- path: dist
name: dr-breakpad-msvc2015-$(PROJECT_REV)
type: zip
deploy:
provider: GitHub
description: 'Automatic build'
auth_token:
secure: H2rTOfsuiqkTmu7tpwMClKRUHwQ61WoNIaC/7x95YLjTsxBMD70VHRaQnV9g7uGX
artifact: dr-breakpad-msvc2015-$(PROJECT_REV).zip
draft: true
prerelease: false
force_update: true
on:
appveyor_repo_tag: true