Merge branch 'release/2.1' into dev
This commit is contained in:
commit
9786e28f52
|
|
@ -3,16 +3,14 @@ init:
|
||||||
- git config --global core.autocrlf true
|
- git config --global core.autocrlf true
|
||||||
branches:
|
branches:
|
||||||
only:
|
only:
|
||||||
- master
|
|
||||||
- /release\/.*/
|
|
||||||
- dev
|
- dev
|
||||||
|
- /^release\/.*$/
|
||||||
- /^(.*\/)?ci-.*$/
|
- /^(.*\/)?ci-.*$/
|
||||||
- /^rel\/.*/
|
|
||||||
build_script:
|
build_script:
|
||||||
- ps: .\run.ps1 default-build
|
- ps: .\run.ps1 default-build
|
||||||
on_finish:
|
on_finish:
|
||||||
- ps: "7z a testlogs.zip testlogs"
|
- ps: 7z a testlogs.zip testlogs
|
||||||
- ps: "Push-AppveyorArtifact testlogs.zip"
|
- ps: Push-AppveyorArtifact testlogs.zip
|
||||||
install:
|
install:
|
||||||
- ps: Install-Product node 8
|
- ps: Install-Product node 8
|
||||||
clone_depth: 1
|
clone_depth: 1
|
||||||
|
|
@ -20,7 +18,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"
|
ASPNETCORE_TEST_LOG_DIR: $(APPVEYOR_BUILD_FOLDER)\testlogs
|
||||||
test: off
|
test: 'off'
|
||||||
deploy: off
|
deploy: 'off'
|
||||||
os: Visual Studio 2017
|
os: Visual Studio 2017
|
||||||
|
|
|
||||||
|
|
@ -20,14 +20,11 @@ addons:
|
||||||
- libunwind8
|
- libunwind8
|
||||||
branches:
|
branches:
|
||||||
only:
|
only:
|
||||||
- master
|
|
||||||
- /release\/.*/
|
|
||||||
- dev
|
- dev
|
||||||
|
- /^release\/.*$/
|
||||||
- /^(.*\/)?ci-.*$/
|
- /^(.*\/)?ci-.*$/
|
||||||
- /^rel\/.*/
|
|
||||||
before_install:
|
before_install:
|
||||||
- nvm install $TRAVIS_NODE_VERSION
|
- nvm install $TRAVIS_NODE_VERSION
|
||||||
# Pull redis docker image so when test creates container it doesn't time out
|
|
||||||
- if test "$TRAVIS_OS_NAME" == "linux"; then docker pull redis; fi
|
- if test "$TRAVIS_OS_NAME" == "linux"; then docker pull redis; fi
|
||||||
script:
|
script:
|
||||||
- ./build.sh
|
- ./build.sh
|
||||||
|
|
|
||||||
|
|
@ -5,6 +5,8 @@
|
||||||
<UserSecretsId>aspnet-ChatSample-f11cf018-e0a8-49fa-b749-4c0eb5c9150b</UserSecretsId>
|
<UserSecretsId>aspnet-ChatSample-f11cf018-e0a8-49fa-b749-4c0eb5c9150b</UserSecretsId>
|
||||||
<!-- Don't create a NuGet package -->
|
<!-- Don't create a NuGet package -->
|
||||||
<IsPackable>false</IsPackable>
|
<IsPackable>false</IsPackable>
|
||||||
|
<!-- Ensures the minification only runs on one target framework - avoids race in MSBuild. -->
|
||||||
|
<RunBundleMinify Condition=" '$(TargetFramework)' == 'net461' OR '$(CI)' == 'true' ">false</RunBundleMinify>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue