forked from Invenietis/CK-DB
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
20 lines (20 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
version: build{build}
image: Visual Studio 2022
clone_folder: C:\CKli-World\CK-Database-Projects\CK-DB
services: mssql2017
branches:
only:
- master
- develop
environment:
SqlServer/MasterConnectionString: Server=(local)\SQL2017;Database=master;User ID=sa;Password=Password12!
CODECAKEBUILDER_SECRET_KEY:
secure: 8VAzdXgUQaJyFoU3WLf2iPFV/8zPDm9qV4TfOpx8/rg=
build_script:
- dotnet run --project CodeCakeBuilder -nointeraction
test: off
on_finish:
- ps: 'Get-ChildItem -Recurse *.log | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name -DeploymentName ''Log files'' }'
- ps: 'Get-ChildItem -Recurse **\Tests\**\TestResult*.xml | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name -DeploymentName ''NUnit tests result files'' }'
- ps: 'Get-ChildItem -Recurse **Tests\**\Logs\**\* | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name -DeploymentName ''Log files'' }'