-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Removed Docker from build process and switched to use MSTest
- Loading branch information
Daniel James
committed
Dec 22, 2017
1 parent
521947b
commit 111a24e
Showing
11 changed files
with
35 additions
and
592 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,3 @@ | ||
bin | ||
obj | ||
tools | ||
tools-container | ||
src/CloudMQTT.Client/AssemblyInfo.cs | ||
packages |
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,20 +1,15 @@ | ||
language: csharp | ||
|
||
os: linux # Ubuntu 14.04 | ||
os: linux | ||
dist: trusty | ||
group: edge | ||
sudo: required | ||
dotnet: 2.0.0 | ||
|
||
services: | ||
- docker | ||
|
||
script: | ||
- ./build.sh | ||
|
||
deploy: | ||
provider: script | ||
script: | ||
- ./build.sh -t Publish | ||
on: | ||
branch: master | ||
- dotnet restore | ||
- dotnet build --configuration Release | ||
- dotnet test src/CloudMQTT.Client.Tests | ||
- "if [[ $TRAVIS_PULL_REQUEST == 'false' && $TRAVIS_TAG ]]; then | ||
dotnet pack src/CloudMQTT.Client --configuration Release /p:Version=$TRAVIS_TAG; | ||
dotnet nuget push src/CloudMQTT.Client/bin/Release/*.nupkg -s https://www.nuget.org/api/v2/package -k $NUGET_API_KEY; | ||
fi" |
This file was deleted.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
Oops, something went wrong.