1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Add Unpack cache step to Windows pipeline

Signed-off-by: Lauri Nevala <lauri.nevala@gmail.com>
This commit is contained in:
Lauri Nevala 2020-06-10 13:21:30 +03:00
parent b9903e72c0
commit b61c33bd18

View File

@ -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