mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-06 07:16:09 +00:00
* add sourcelink support * Update sourcelink (2.0.2 -> 2.1.0) * Add parameter to enable source linking * tidy up the arguments with an extension method allowing an argument to be conditionally appended * Add an explicit "test sourcelink" build task and remove the MSBuild one, so we can get some build script output without needing the whole build to be in verbose logging * run sourcelink test against the NuGet packages
11 lines
284 B
Bash
Executable File
11 lines
284 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
|
|
dotnet restore
|
|
dotnet run -- --linkSources=true |