mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-06 07:16:09 +00:00
* run FormatCode build task to fix whitespace/formatting * correctly flag some GitHub Enterprise tests * Add Release Notes * tweak appveyor to not build branch in the repo, when a PR exists already * travis to only build master branch and PRs * output actual "dotnet run" command being executed for cake.frosting builds * update latest Cake.Frosting * use normal verbosity at the moment due to apparent conflict with "verbose" and latest SDK on appveyor * try using double dash so dotnet executable doesnt look at --verbosity argument * travis OSX couldn't download SDK 2.0.3 anymore, lets try the latest 2.1.300
15 lines
390 B
Bash
Executable File
15 lines
390 B
Bash
Executable File
#!/bin/bash
|
|
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
|
|
# This is due to: https://github.com/NuGet/Home/issues/2163#issue-135917905
|
|
echo "current ulimit is: `ulimit -n`..."
|
|
ulimit -n 1024
|
|
echo "new limit: `ulimit -n`"
|
|
fi
|
|
|
|
cd build
|
|
echo "Preparing Cake.Frosting build runner..."
|
|
dotnet restore
|
|
|
|
echo "Executing Cake.Frosting build runner..."
|
|
echo "dotnet run -- $@"
|
|
dotnet run -- "$@" |