Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Travis build #3169

Merged
merged 12 commits into from
May 6, 2017
Prev Previous commit
Next Next commit
updateing references
  • Loading branch information
shahabhijeet committed May 5, 2017
commit 6a12bd9c6f79210955301b2639a4153c551794ea
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Azure.ResourceManager" Version="1.1.0-preview" />
<PackageReference Include="Microsoft.Azure.ResourceManager" Version="[1.1.0-preview]" />
<PackageReference Include="Microsoft.Azure.Management.Storage" Version="[4.2.0-preview]" />
<PackageReference Include="Microsoft.Azure.Management.Compute" Version="14.1.0-prerelease" />
<PackageReference Include="Microsoft.Azure.Management.Compute" Version="[14.1.0-prerelease]" />
<PackageReference Include="Microsoft.Azure.Management.Network" Version="[5.0.1-preview,7.0)" />

<PackageReference Include="Microsoft.Azure.Test.HttpRecorder" Version="[1.7.0,2.0.0)" />
Expand Down
5 changes: 4 additions & 1 deletion testSdkOnLinux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,21 @@ nugetOrgSource="https://api.nuget.org/v3/index.json"
localNugetFeed="./tools/LocalNugetFeed"

echo "Restore ClientRuntime for $ubuntu1404"
dotnet restore src/SdkCommon/ClientRuntime.sln -r $ubuntu1404 -s $nugetOrgSource
dotnet restore src/SdkCommon/ClientRuntime.sln -r $ubuntu1404

echo "Build ClientRuntime for $net14"
#dotnet restore src/SdkCommon/ClientRuntime/ClientRuntime/Microsoft.Rest.ClientRuntime.csproj
dotnet build src/SdkCommon/ClientRuntime/ClientRuntime/Microsoft.Rest.ClientRuntime.csproj -f $netstd14
dotnet build src/SdkCommon/ClientRuntime.Azure/ClientRuntime.Azure/Microsoft.Rest.ClientRuntime.Azure.csproj -f $netstd14
dotnet build src/SdkCommon/ClientRuntime.Azure.Authentication/Microsoft.Rest.ClientRuntime.Azure.Authentication.csproj -f $netstd14

echo "Build ClientRuntime Tests for $netcore11"
#dotnet build src/SdkCommon/ClientRuntime/ClientRuntime.Tests/Microsoft.Rest.ClientRuntime.Tests.csproj -f $netcore11
dotnet build src/SdkCommon/ClientRuntime/ClientRuntime.Tests/Microsoft.Rest.ClientRuntime.Tests.csproj -f $netcore11
dotnet build src/SdkCommon/ClientRuntime.Azure/ClientRuntime.Azure.Tests/Microsoft.Rest.ClientRuntime.Azure.Tests.csproj -f $netcore11

echo "Running ClientRuntime Tests $netcore11"
#dotnet test src/SdkCommon/ClientRuntime/ClientRuntime.Tests/Microsoft.Rest.ClientRuntime.Tests.csproj -f $netcore11
dotnet test src/SdkCommon/ClientRuntime/ClientRuntime.Tests/Microsoft.Rest.ClientRuntime.Tests.csproj -f $netcore11
dotnet test src/SdkCommon/ClientRuntime.Azure/ClientRuntime.Azure.Tests/Microsoft.Rest.ClientRuntime.Azure.Tests.csproj -f $netcore11

Expand Down