Skip to content
This repository has been archived by the owner on Dec 18, 2018. It is now read-only.

Commit

Permalink
Merge branch 'release/2.1' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
Nate McMaster committed Mar 2, 2018
2 parents e71bfb9 + 5dd6543 commit 9786e28
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 30 deletions.
24 changes: 11 additions & 13 deletions .appveyor.yml
Original file line number Diff line number Diff line change
@@ -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
31 changes: 14 additions & 17 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 2 additions & 0 deletions samples/ChatSample/ChatSample.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
<UserSecretsId>aspnet-ChatSample-f11cf018-e0a8-49fa-b749-4c0eb5c9150b</UserSecretsId>
<!-- Don't create a NuGet package -->
<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>

<ItemGroup>
Expand Down

0 comments on commit 9786e28

Please sign in to comment.