forked from audiohacked/OpenCorsairLink
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.appveyor.yml
53 lines (43 loc) · 1.01 KB
/
.appveyor.yml
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
version: 1.0.{build}-{branch}
branches:
only:
- master
- testing
except:
- legacy
image:
- Ubuntu
platform:
- x86
- x64
- Any CPU
configuration:
- Debug
- Release
environment:
APPVEYOR_YML_DISABLE_PS_LINUX: true
install:
- sh: sudo apt-get update
- sh: sudo apt-get install -y libusb-1.0-0-dev
#before_build:
# - cmake -H. -BBuild -A%PLATFORM%
build: off
build_script:
- make rebuild
test: off
#test_script:
# - make test
#deploy:
# release: myproduct-v$(appveyor_build_version)
# description: 'Release description'
# provider: GitHub
# auth_token:
# secure: <your encrypted token> # your encrypted token from GitHub
# artifact: /.*\.nupkg/ # upload all NuGet packages to release assets
# draft: false
# prerelease: false
# on:
# branch:
# - master # release from master branch only
# - testing
# appveyor_repo_tag: true # deploy on tag push only