From bd86168fd1e2580774d95d7d83fe839bc06eaf45 Mon Sep 17 00:00:00 2001 From: Dan Walmsley Date: Tue, 23 Oct 2018 12:05:19 +0100 Subject: [PATCH] dont publish linux binaries --- azure-pipelines.yml | 4 ---- build.cake | 4 +--- 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 48fa77ba39..65e1a67123 100644 --- a/azure-pipelines.yml +++ b/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: diff --git a/build.cake b/build.cake index 41c9c30e13..49bf49e238 100644 --- a/build.cake +++ b/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")