From b7fd21a88c06f438e3cf22192fab5b26ae342a02 Mon Sep 17 00:00:00 2001 From: Christoph Ruegg Date: Sun, 24 Jun 2018 10:19:20 +0200 Subject: [PATCH] Build: sign also native provider NuGet packages --- build.fsx | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/build.fsx b/build.fsx index 632d2dbb..1a9a22f4 100644 --- a/build.fsx +++ b/build.fsx @@ -268,6 +268,9 @@ Target "MklWinBuild" (fun _ -> CreateDir mklSolution.OutputNuGetDir nugetPackManually mklSolution [ mklWinPack; mklWin32Pack; mklWin64Pack ] + // NuGet Sign (all or nothing) + if isWindows && hasBuildParam "sign" then signNuGet fingerprint timeserver mklSolution + ) "Prepare" ==> "MklWinBuild" @@ -280,6 +283,9 @@ Target "CudaWinBuild" (fun _ -> CreateDir cudaSolution.OutputNuGetDir nugetPackManually cudaSolution [ cudaWinPack ] + // NuGet Sign (all or nothing) + if isWindows && hasBuildParam "sign" then signNuGet fingerprint timeserver cudaSolution + ) "Prepare" ==> "CudaWinBuild" @@ -293,6 +299,9 @@ Target "OpenBlasWinBuild" (fun _ -> CreateDir openBlasSolution.OutputNuGetDir nugetPackManually openBlasSolution [ openBlasWinPack ] + // NuGet Sign (all or nothing) + if isWindows && hasBuildParam "sign" then signNuGet fingerprint timeserver openBlasSolution + ) "Prepare" ==> "OpenBlasWinBuild"