From 812fcbbe2c19edcdab7d97a249188f9b214e7818 Mon Sep 17 00:00:00 2001 From: Nick Craig-Wood Date: Mon, 29 Apr 2019 17:10:18 +0100 Subject: [PATCH] Attempt to fix Windows CPATH --- azure-pipelines.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 93d0716f2..a7584a8dc 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -48,6 +48,7 @@ variables: GO111MODULE: 'off' GOTAGS: cmount GO_LATEST: false + CPATH: '' steps: - bash: | @@ -87,7 +88,7 @@ steps: - powershell: | choco install -y winfsp zip make - [Environment]::SetEnvironmentVariable("CPATH", "C:\Program Files\WinFsp\inc\fuse;C:\Program Files (x86)\WinFsp\inc\fuse", "Machine") + Write-Host "##vso[task.setvariable variable=CPATH]C:\Program Files\WinFsp\inc\fuse;C:\Program Files (x86)\WinFsp\inc\fuse" condition: eq( variables['Agent.OS'], 'Windows_NT' ) displayName: Install Libraries on Windows