Skip to content

Commit

Permalink
#5 removing bench from build.
Browse files Browse the repository at this point in the history
  • Loading branch information
drr00t committed Apr 11, 2017
1 parent 2a144a1 commit 466fa85
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ install:
- nuget install NUnit.Runners -Version 3.0.1 -OutputDirectory testrunner

script:
- xbuild /p:Configuration=Release ./src/TweetNaCl.sln
- xbuild /p:Configuration=Debug ./src/TweetNaCl.sln
- mono ./testrunner/NUnit.Console.3.0.1/tools/nunit3-console.exe src/TweetNaCl.Tests/bin/Release/TweetNaCl.Tests.dll
4 changes: 3 additions & 1 deletion build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,14 @@ Target "Clean" (fun _ ->

Target "BuildLibDebug" (fun _ ->
!! "src/**/*.csproj"
|> MSBuildRelease buildDir "Build"
-- "src/**/*.Bench.csproj"
|> MSBuildDebug buildDir "Build"
|> Log "AppBuild-Output: "
)

Target "BuildLibRelease" (fun _ ->
!! "src/**/*.csproj"
-- "src/**/*.Bench.csproj"
|> MSBuildRelease deployDir "Build"
|> Log "AppBuild-Output: "
)
Expand Down

0 comments on commit 466fa85

Please sign in to comment.