forked from Azure/azure-sdk-for-net
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
enable scopes and travis (Azure#3098)
* enable scopes and travis * adding unsaved file * adding dotnet install on travis * Enabling publish
- Loading branch information
1 parent
486685b
commit 5d7642d
Showing
10 changed files
with
896 additions
and
22 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 |
---|---|---|
|
@@ -15,6 +15,7 @@ binaries/ | |
[Rr]elease/ | ||
build/ | ||
restoredPackages/ | ||
PublishedNugets/ | ||
src/NuGet.Config | ||
tools/7-zip/ | ||
|
||
|
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
language: csharp | ||
sudo: required | ||
dist: trusty | ||
addons: | ||
apt: | ||
sources: | ||
packages: | ||
install: | ||
- sudo sh -c 'echo "deb [arch=amd64] https://apt-mo.trafficmanager.net/repos/dotnet/ trusty main" > /etc/apt/sources.list.d/dotnetdev.list' | ||
- sudo apt-key adv --keyserver apt-mo.trafficmanager.net --recv-keys 417A0893 | ||
- sudo apt-get update | ||
- sudo apt-get install dotnet-dev-1.0.0-preview2-003121 -y | ||
script: | ||
- ./testSdkOnLinux.sh | ||
after_script: | ||
- echo "========== Server log: ============" | ||
- pwd | ||
- ls -al | ||
- ls -al TestResults | ||
- cat TestResults/*.log | ||
notifications: | ||
slack: | ||
secure: d0PFVLcyqcMxNtmZ8JaEpIBzXbUbZCgKs8QtBB5qEIXDnxflSR3AhczlILNhTBKtMEBlwVzsz65yP09XcmvB6xpAfJbHqSRzk2frKa5viPcAD8Wr/NYamt9/UiTCsnql8MqzjVy0tLdMscXKRmsUey4YF570zl0b7gAbq7XTqxM= |
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 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,12 +1,12 @@ | ||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<Import Project="directory.Build.props" /> | ||
<Import Project="directory.Build.targets" /> | ||
<Project DefaultTargets="FullBuild" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<Import Project="Directory.Build.props" /> | ||
<Import Project="Directory.Build.targets" /> | ||
<Import Project="test.props" /> | ||
<Import Project="AzSdk.props" /> | ||
|
||
<Target Name="Clean" DependsOnTargets="$(CleanTraversedProjectsDependsOn)" /> | ||
<Target Name="Restore" DependsOnTargets="$(RestoreTraversedProjectsDependsOn)" /> | ||
<Target Name="Build" DependsOnTargets="Restore;$(BuildTraversedProjectsDependsOn)" /> | ||
<Target Name="Rebuild" DependsOnTargets="Clean;Build" /> | ||
<Target Name="FullBuild" DependsOnTargets="Rebuild;Test" /> | ||
<Target Name="FullBuild" DependsOnTargets="ReBuild;Test" /> | ||
</Project> |
Oops, something went wrong.