From ac4da48f8831fadd59c79a9ae88fffa5912adc9b Mon Sep 17 00:00:00 2001 From: Lauri Nevala Date: Thu, 11 Jun 2020 09:54:23 +0300 Subject: [PATCH] Skip unpack cache on Windows Signed-off-by: Lauri Nevala --- .azure-pipelines.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml index 84053f31bb..b0fbfbcb97 100644 --- a/.azure-pipelines.yml +++ b/.azure-pipelines.yml @@ -35,11 +35,11 @@ jobs: path: $(YARN_CACHE_FOLDER) cacheHitVar: CACHE_RESTORED displayName: Cache Yarn packages - - powershell: | - mkdir -p "$env:YARN_CACHE_FOLDER" - tar -xzf "$env:YARN_CACHE_FOLDER/yarn-cache.tar.gz" -C / - displayName: "Unpack cache" - condition: eq(variables.CACHE_RESTORED, 'true') + #- powershell: | + # mkdir -p "$env:YARN_CACHE_FOLDER" + # tar -xzf "$env:YARN_CACHE_FOLDER/yarn-cache.tar.gz" -C / + # displayName: "Unpack cache" + # condition: eq(variables.CACHE_RESTORED, 'true') - script: make deps displayName: Install dependencies - script: make integration-win