forked from winsiderss/systeminformer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
71 lines (58 loc) · 1.56 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# Version format.
version: "Build #{build}"
# Only build the master branch.
branches:
only:
- master
# Do not increment build number after pull requests.
pull_requests:
do_not_increment_build_number: true
# Do not start a new build when a new Git tag is created.
skip_tags: true
# Set the clone directory on the buildbot.
clone_folder: C:\projects\processhacker2
# Set clone depth.
clone_depth: 1
# Do not build on commits, only nightly builds.
skip_commits:
message: /^(?!.*(appveyor)).*/
# Immediately finish build if something fails.
matrix:
fast_finish: true
# Install inno setup.
install:
- choco install -y InnoSetup
# Disable running any test assemblies.
test: off
# Run custom build script.
build_script:
- ps: .\build\internal\nightly.ps1
# FTP deployment settings.
deploy:
- provider: FTP
host: wj32.org
protocol: sftp
username: processhacker
password:
secure: lWdlTtxnMMQRjUQ8pndOBPBiJPn8b8ssP1qtSPzIj58=
folder: /www/rel
# Deploy these files to our ftp.
artifacts:
- path: .\processhacker-nightly-setup.exe
name: processhacker-nightly-setup.exe
- path: .\processhacker-nightly-bin.zip
name: processhacker-nightly-bin.zip
- path: .\processhacker-nightly-sdk.zip
name: processhacker-nightly-sdk.zip
- path: .\processhacker-nightly-src.zip
name: processhacker-nightly-src.zip
- path: .\processhacker-nightly-checksums.txt
name: processhacker-nightly-checksums.txt
# Setup build notifications.
notifications:
- provider: Email
to:
- dmex04@gmail.com
on_build_success: false
on_build_failure: true
on_build_status_changed: false