Browse Source

dont publish linux binaries

pull/1992/head
Dan Walmsley 8 years ago
parent
commit
bd86168fd1
  1. 4
      azure-pipelines.yml
  2. 4
      build.cake

4
azure-pipelines.yml

@ -13,10 +13,6 @@ jobs:
dotnet --info
printenv
./build.sh --target "Azure-Linux" --configuration "Release"
- task: PublishBuildArtifacts@1
inputs:
pathToPublish: '$(Build.SourcesDirectory)/artifacts/bin'
artifactName: 'BinariesLinux'
- job: macOS
pool:

4
build.cake

@ -339,9 +339,7 @@ Task("Travis")
.IsDependentOn("Run-Tests");
Task("Azure-Linux")
.IsDependentOn("Run-Tests")
.IsDependentOn("Copy-Files-Impl")
.IsDependentOn("Zip-Files-Impl");
.IsDependentOn("Run-Tests");
Task("Azure-OSX")
.IsDependentOn("Run-Tests")

Loading…
Cancel
Save