Publish test logs to AppVeyor Artifacts (#1411)
This commit is contained in:
parent
57ce00d9ad
commit
4594ba2df2
|
|
@ -10,6 +10,11 @@ branches:
|
||||||
- /^rel\/.*/
|
- /^rel\/.*/
|
||||||
build_script:
|
build_script:
|
||||||
- ps: .\run.ps1 default-build
|
- ps: .\run.ps1 default-build
|
||||||
|
- ps: "7z a testlogs.zip testlogs"
|
||||||
|
artifacts:
|
||||||
|
- path: testlogs.zip
|
||||||
|
name: TestLogs
|
||||||
|
type: Zip
|
||||||
install:
|
install:
|
||||||
- ps: Install-Product node 8
|
- ps: Install-Product node 8
|
||||||
clone_depth: 1
|
clone_depth: 1
|
||||||
|
|
@ -17,6 +22,7 @@ environment:
|
||||||
global:
|
global:
|
||||||
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
|
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
|
||||||
DOTNET_CLI_TELEMETRY_OPTOUT: 1
|
DOTNET_CLI_TELEMETRY_OPTOUT: 1
|
||||||
|
ASPNETCORE_TEST_LOG_DIR: "$(APPVEYOR_BUILD_FOLDER)\\testlogs"
|
||||||
test: off
|
test: off
|
||||||
deploy: off
|
deploy: off
|
||||||
os: Visual Studio 2017
|
os: Visual Studio 2017
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue