diff --git a/.appveyor.yml b/.appveyor.yml index d98db16a9f..f8d65af7e4 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -1,26 +1,24 @@ image: Visual Studio 2017 init: - - git config --global core.autocrlf true +- git config --global core.autocrlf true branches: only: - - master - - /release\/.*/ - - dev - - /^(.*\/)?ci-.*$/ - - /^rel\/.*/ + - dev + - /^release\/.*$/ + - /^(.*\/)?ci-.*$/ build_script: - - ps: .\run.ps1 default-build +- ps: .\run.ps1 default-build on_finish: - - ps: "7z a testlogs.zip testlogs" - - ps: "Push-AppveyorArtifact testlogs.zip" +- ps: 7z a testlogs.zip testlogs +- ps: Push-AppveyorArtifact testlogs.zip install: - - ps: Install-Product node 8 +- ps: Install-Product node 8 clone_depth: 1 environment: global: DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true DOTNET_CLI_TELEMETRY_OPTOUT: 1 - ASPNETCORE_TEST_LOG_DIR: "$(APPVEYOR_BUILD_FOLDER)\\testlogs" -test: off -deploy: off + ASPNETCORE_TEST_LOG_DIR: $(APPVEYOR_BUILD_FOLDER)\testlogs +test: 'off' +deploy: 'off' os: Visual Studio 2017 diff --git a/.travis.yml b/.travis.yml index c28619b120..7624de0c8f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,32 +2,29 @@ language: csharp sudo: required dist: trusty services: - - docker +- docker env: global: - - DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true - - DOTNET_CLI_TELEMETRY_OPTOUT: 1 - - SIGNALR_TESTS_VERBOSE: 1 - - TRAVIS_NODE_VERSION: 8.9.3 + - DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true + - DOTNET_CLI_TELEMETRY_OPTOUT: 1 + - SIGNALR_TESTS_VERBOSE: 1 + - TRAVIS_NODE_VERSION: 8.9.3 mono: none os: - - linux - - osx +- linux +- osx osx_image: xcode8.2 addons: apt: packages: - - libunwind8 + - libunwind8 branches: only: - - master - - /release\/.*/ - - dev - - /^(.*\/)?ci-.*$/ - - /^rel\/.*/ + - dev + - /^release\/.*$/ + - /^(.*\/)?ci-.*$/ before_install: - - 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 +- nvm install $TRAVIS_NODE_VERSION +- if test "$TRAVIS_OS_NAME" == "linux"; then docker pull redis; fi script: - - ./build.sh +- ./build.sh diff --git a/samples/ChatSample/ChatSample.csproj b/samples/ChatSample/ChatSample.csproj index f53165df2e..8998703bfa 100644 --- a/samples/ChatSample/ChatSample.csproj +++ b/samples/ChatSample/ChatSample.csproj @@ -5,6 +5,8 @@ aspnet-ChatSample-f11cf018-e0a8-49fa-b749-4c0eb5c9150b false + + false