From 520085c60baaa7f853e25ea44d1504eedb7f02a5 Mon Sep 17 00:00:00 2001 From: Dan Walmsley Date: Mon, 22 Oct 2018 23:27:47 +0100 Subject: [PATCH] copy and zip bin files. --- build.cake | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/build.cake b/build.cake index baa157cc9f..41c9c30e13 100644 --- a/build.cake +++ b/build.cake @@ -339,10 +339,14 @@ Task("Travis") .IsDependentOn("Run-Tests"); Task("Azure-Linux") - .IsDependentOn("Run-Tests"); + .IsDependentOn("Run-Tests") + .IsDependentOn("Copy-Files-Impl") + .IsDependentOn("Zip-Files-Impl"); Task("Azure-OSX") - .IsDependentOn("Run-Tests"); + .IsDependentOn("Run-Tests") + .IsDependentOn("Copy-Files-Impl") + .IsDependentOn("Zip-Files-Impl"); Task("Azure-Windows") .IsDependentOn("Package")