diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 3cddb3c95e941..0000000000000 --- a/.travis.yml +++ /dev/null @@ -1,29 +0,0 @@ -language: csharp - -matrix: - include: - - os: linux # Ubuntu 14.04 - dist: trusty - sudo: required - dotnet: 1.0.0-preview2-003121 - - os: osx # OSX 10.11 - osx_image: xcode7.2 - dotnet: 1.0.0-preview2-003121 - - os: osx # OSX 10.12 - osx_image: xcode7.3 - dotnet: 1.0.0-rc4-0044771 - -## If `dotnet` configuration doesnt work, use install script instead -# install: -# - export DOTNET_INSTALL_DIR="$PWD/.dotnetsdk" -# - curl -sSL https://raw.githubusercontent.com/dotnet/cli/rel/1.0.0/scripts/obtain/dotnet-install.sh | bash /dev/stdin --version "$CLI_VERSION" --install-dir "$DOTNET_INSTALL_DIR" -# - export PATH="$DOTNET_INSTALL_DIR:$PATH" - -script: - - dotnet --info - # Run a new console app - - mkdir -p "test/test-dotnet-new" && pushd "test/test-dotnet-new" - - dotnet new - - dotnet restore - - dotnet run a b - - popd diff --git a/docs/core/tools/using-ci-with-cli.md b/docs/core/tools/using-ci-with-cli.md index 47966f03d448f..24c81f03a92ff 100644 --- a/docs/core/tools/using-ci-with-cli.md +++ b/docs/core/tools/using-ci-with-cli.md @@ -118,7 +118,7 @@ LOCALDOTNET="$INSTALLDIR/dotnet" You can configure [Travis CI](https://travis-ci.org/) to install the .NET Core SDK using the `csharp` language and the `dotnet` key. For more information, see the official Travis CI docs on [Building a C#, F#, or Visual Basic Project](https://docs.travis-ci.com/user/languages/csharp/). Note as you access the Travis CI information that the community-maintained `language: csharp` language identifier works for all .NET languages, including F#, and Mono. -Travis CI runs both macOS and Linux jobs in a *build matrix*, where you specify a combination of runtime, environment, and exclusions/inclusions to cover your build combinations for your app. For more information, see the [.travis.yml example](https://github.com/dotnet/docs/blob/master/.travis.yml) file and [Customizing the Build](https://docs.travis-ci.com/user/customizing-the-build) in the Travis CI documentation. The MSBuild-based tools include the LTS (1.0.x) and Current (1.1.x) runtimes in the package; so by installing the SDK, you receive everything you need to build. +Travis CI runs both macOS and Linux jobs in a *build matrix*, where you specify a combination of runtime, environment, and exclusions/inclusions to cover your build combinations for your app. For more information, see the [Customizing the Build](https://docs.travis-ci.com/user/customizing-the-build) article in the Travis CI documentation. The MSBuild-based tools include the LTS (1.0.x) and Current (1.1.x) runtimes in the package; so by installing the SDK, you receive everything you need to build. ### AppVeyor @@ -171,4 +171,4 @@ Two general approaches that you take in structuring the build process for .NET C ## See also -* [.NET downloads - Linux](https://dotnet.microsoft.com/download?initial-os=linux) \ No newline at end of file +* [.NET downloads - Linux](https://dotnet.microsoft.com/download?initial-os=linux)