From 72f44ebcb90a32e116a85d2900cdadce5a224c24 Mon Sep 17 00:00:00 2001 From: Roy Ashbrook Date: Tue, 16 Nov 2021 15:18:37 -0500 Subject: [PATCH] trying a folder --- azure-pipelines.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index d6348f5..ad4a3a5 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -25,7 +25,7 @@ jobs: inputs: key: ace restoreKeys: ace - path: ace.exe + path: .\ace cacheHitVar: CACHE_RESTORED displayName: Cache ACE @@ -35,12 +35,13 @@ jobs: - powershell: | $ProgressPreference = 'SilentlyContinue' $uri = 'https://download.microsoft.com/download/3/5/C/35C84C36-661A-44E6-9324-8786B8DBE231/accessdatabaseengine_X64.exe' - irm $uri -outfile ace.exe + md .\cache + irm $uri -outfile .\ace\ace.exe $ProgressPreference = 'Continue' displayName: 'Download ACE' condition: ne(variables.CACHE_RESTORED, 'true') - - powershell: Start-Process .\ace.exe -Wait -ArgumentList "/quiet /passive /norestart" + - powershell: Start-Process .\ace\ace.exe -Wait -ArgumentList "/quiet /passive /norestart" displayName: 'Install ACE' - powershell: (New-Object system.data.oledb.oledbenumerator).GetElements().SOURCES_NAME