Skip to content

Commit

Permalink
Improve travis(osx/linux) build
Browse files Browse the repository at this point in the history
  • Loading branch information
adamchester committed Mar 4, 2017
1 parent 1dfb049 commit b2b95aa
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ bld/
[Bb]in/
[Oo]bj/
BenchmarkDotNet.Artifacts/
.dotnetcli/

# Visual Studio 2015 cache/options directory
.vs/
Expand Down
12 changes: 6 additions & 6 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ dotnet --info
dotnet restore

for path in src/**/*.csproj; do
dotnet build -c Release ${path}
dotnet build -f netstandard1.0 -c Release ${path}
dotnet build -f netstandard1.3 -c Release ${path}
done

for path in test/**/*.csproj; do
dotnet build -f netcoreapp1.0 -c Release ${path}
for path in test/Serilog.Tests/*.csproj; do
dotnet test -f netcoreapp1.0 -c Release ${path}
done

for path in test/Serilog.PerformanceTests/Serilog.PerformanceTests.csproj; do
dotnet build -f netcoreapp1.0 -c Release ${path}
done
# for path in test/Serilog.PerformanceTests/Serilog.PerformanceTests.csproj; do
# dotnet test -f netcoreapp1.0 -c Release ${path}
# done

0 comments on commit b2b95aa

Please sign in to comment.