-
-
Notifications
You must be signed in to change notification settings - Fork 732
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This commit changes a lot of the interals in Cake to allow it to run on the CoreCLR. Closes #1015
- Loading branch information
Patrik Svensson
committed
Aug 12, 2016
1 parent
95cb97b
commit a49462f
Showing
673 changed files
with
5,437 additions
and
11,598 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,34 @@ | ||
language: csharp | ||
script: | ||
- ./build.sh | ||
os: | ||
- linux | ||
- osx | ||
- linux | ||
|
||
# .NET CLI require Ubuntu 14.04 | ||
sudo: required | ||
dist: trusty | ||
addons: | ||
apt: | ||
packages: | ||
- gettext | ||
- libcurl4-openssl-dev | ||
- libicu-dev | ||
- libssl-dev | ||
- libunwind8 | ||
|
||
# .NET CLI require OSX 10.10 | ||
osx_image: xcode7.1 | ||
before_install: | ||
- if test "$TRAVIS_OS_NAME" == "osx"; then brew update; brew install openssl; ln -s /usr/local/opt/openssl/lib/libcrypto.1.0.0.dylib /usr/local/lib/; ln -s /usr/local/opt/openssl/lib/libssl.1.0.0.dylib /usr/local/lib/; fi | ||
|
||
mono: | ||
- 4.2.3 | ||
|
||
script: | ||
- ./build.sh --verbosity diagnostic | ||
|
||
cache: | ||
directories: | ||
- src/packages | ||
- tools | ||
- .packages | ||
- tools/Addins | ||
- tools/gitreleasemanager | ||
- tools/GitVersion.CommandLine |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
# Cake Bitbucket Pipeline | ||
image: devlead/pipeline-mono | ||
image: devlead/bitbucket-pipelines-dotnet | ||
|
||
pipelines: | ||
default: | ||
- step: | ||
script: | ||
- ./build.sh | ||
- ln -s /opt/dotnet .dotnet | ||
- ./build.sh -t "Run-Unit-Tests" |
Oops, something went wrong.