forked from cefsharp/CefSharp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
39 lines (31 loc) · 909 Bytes
/
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
version: 103.0.80-CI{build}
clone_depth: 10
image: Visual Studio 2019
configuration: Release
build_script:
- ps: .\build.ps1
- ps: .\build.ps1 -TargetFramework NetCore
test_script:
# Test our Release x64 build
- dotnet test CefSharp.Test\bin\x64\Release\win7-x64\CefSharp.Test.dll
- dotnet test CefSharp.Test\bin.netcore\x64\Release\netcoreapp3.1\win-x64\CefSharp.Test.dll
artifacts:
- path: NuGet\**\*.nupkg
name: nupkgfiles
# Publish to myget.org feed
deploy:
provider: NuGet
server: https://www.myget.org/F/cefsharp/api/v2/package
api_key:
secure: V8du2PPvMPok3Ya701jt5v2XWQgOZf52/H5wDHXBpKvXYkIIe8sonhVUy2TmEkqt
skip_symbols: true
symbol_server: https://www.myget.org/F/cefsharp/api/v2/package
artifact: nupkgfiles
#Skip builing if we only modify text files
skip_commits:
files:
- '**/*.md'
- '**/*.html'
- '**/*.js'
- '**/*.css'
- '**/*.txt'