wintoncode / Winton.AspNetCore.Seo

Makes it easy to add search engine metadata to your ASP.NET Core website
Other
73 stars 7 forks source link

Fix broken Travis OS X build #11

Closed Choc13 closed 7 years ago

Choc13 commented 7 years ago

Travis builds are failing on OS X with the error: Homebrew must be run under Ruby 2.3! (RuntimeError). There is an issue open on the Travis repo to fix this, but for the time being the suggestion for .NET Core projects is to the change the build script to something like the following:

language: csharp
matrix:
  include:
    - os: osx
      osx_image: xcode9      
      sudo: required        
before_install:
  - brew update
  - curl https://dot.net/v1/dotnet-install.sh -o dotnet-install.sh
  - chmod +x dotnet-install.sh
  - ./dotnet-install.sh --channel 2.0