-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
24 lines (24 loc) · 921 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
#------------------------------------------------------------#
# CI Build Configuration for master branch pre-release #
#------------------------------------------------------------#
version: "{build}"
image:
- Visual Studio 2022
- Ubuntu
configuration: Release
environment:
APPVEYOR_YML_DISABLE_PS_LINUX: true
CODECOV_TOKEN:
secure: 2/6E5a1yzv5Wp1yRpHGDybeKyjdyJlO2xiRxuT4TBGBJcbSfjOrMRsFpMd/X334f
NUGET_TOKEN:
secure: eyoadyfbm9PMBJEXogTwbGeHrPYvUVpdPmZfaR7lRO1snJVT6Fz2nFx6vS9FemLP
APPVEYOR_TOKEN:
secure: wVt1RgJAnhNTyIjtK9yFkQbEEM+fBk1TLUzo0j3pe2U=
# Do not build feature branch with open Pull Requests
# skip_branch_with_pr: true
build_script:
- sh: nuget sources Add -Name "MyNuget" -Source https://api.nuget.org/v3/index.json
- sh: chmod +x build.sh
- sh: ./build.sh
- ps: (& cmd /c); [console]::OutputEncoding = New-Object System.Text.UTF8Encoding; & .\build.ps1
test: off