From b61c33bd18336e7ed5448fddedc0a2050492a563 Mon Sep 17 00:00:00 2001 From: Lauri Nevala Date: Wed, 10 Jun 2020 13:21:30 +0300 Subject: [PATCH] Add Unpack cache step to Windows pipeline Signed-off-by: Lauri Nevala --- .azure-pipelines.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml index 4df47538a1..2128eee90e 100644 --- a/.azure-pipelines.yml +++ b/.azure-pipelines.yml @@ -34,10 +34,15 @@ jobs: key: yarn | $(Agent.OS) | yarn.lock path: $(YARN_CACHE_FOLDER) displayName: Cache Yarn packages + - powershell: | + mkdir -p "$YARN_CACHE_FOLDER" + tar -xzf "$AZURE_CACHE_FOLDER/yarn-cache.tar.gz" -C / + displayName: "Unpack cache" + condition: eq(variables.CACHE_RESTORED, 'true') - script: make deps displayName: Install dependencies - powershell: | - minikube.exe start --driver=docker + kind.exe create cluster --name minikube displayName: Starting Minikube - script: make integration-win displayName: Run integration tests