diff options
author | Rob Mensching <rob@firegiant.com> | 2021-04-26 11:31:05 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2021-05-11 11:14:01 -0700 |
commit | df016066100df955d5ff98811e113fb2b1bd4b8a (patch) | |
tree | a27b35a3651ca7b1d8c4bb7c7483ec2f92583e08 /appveyor.yml | |
parent | dc6022da6cdbb9d7ca54c4a36485ceead07feaaf (diff) | |
download | wix-df016066100df955d5ff98811e113fb2b1bd4b8a.tar.gz wix-df016066100df955d5ff98811e113fb2b1bd4b8a.tar.bz2 wix-df016066100df955d5ff98811e113fb2b1bd4b8a.zip |
Implement integrated build process
Diffstat (limited to 'appveyor.yml')
-rw-r--r-- | appveyor.yml | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 00000000..6f7d7b1b --- /dev/null +++ b/appveyor.yml | |||
@@ -0,0 +1,44 @@ | |||
1 | # Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. | ||
2 | |||
3 | branches: | ||
4 | only: | ||
5 | - master | ||
6 | - develop | ||
7 | |||
8 | image: Visual Studio 2019 | ||
9 | |||
10 | version: 0.0.0.{build} | ||
11 | configuration: Release | ||
12 | |||
13 | environment: | ||
14 | DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true | ||
15 | DOTNET_CLI_TELEMETRY_OPTOUT: 1 | ||
16 | NUGET_XMLDOC_MODE: skip | ||
17 | SigningUser: | ||
18 | secure: s+b2kuhi/AlE8ZYFsNVHFLfgJOwi0fIKMCOP+xL++8U= | ||
19 | SigningSecret: | ||
20 | secure: h0urCGu3+ArelfLcW0JvB82rc7dkPqedVSxXmMbQ+dc= | ||
21 | |||
22 | build_script: | ||
23 | - src\build_official.cmd | ||
24 | |||
25 | test: off | ||
26 | |||
27 | pull_requests: | ||
28 | do_not_increment_build_number: true | ||
29 | |||
30 | nuget: | ||
31 | disable_publish_on_pr: true | ||
32 | |||
33 | skip_branch_with_pr: true | ||
34 | skip_tags: true | ||
35 | |||
36 | artifacts: | ||
37 | - path: build\artifacts | ||
38 | name: artifacts | ||
39 | type: zip | ||
40 | |||
41 | notifications: | ||
42 | - provider: Slack | ||
43 | incoming_webhook: | ||
44 | secure: p5xuu+4x2JHfwGDMDe5KcG1k7gZxqYc4jWVwvyNZv5cvkubPD2waJs5yXMAXZNN7Z63/3PWHb7q4KoY/99AjauYa1nZ4c5qYqRPFRBKTHfA= | ||