From 5b3190acb5088ebf87f9ba8bb13390957f44d601 Mon Sep 17 00:00:00 2001 From: Sargun Dhillon Date: Tue, 14 May 2019 16:29:21 -0700 Subject: [PATCH] Cache go build artifacts (#619) --- .circleci/config.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index c262c06f4..11de47e2f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -99,10 +99,17 @@ jobs: name: Watch nodes command: kubectl get nodes -o json --watch background: true + - restore_cache: + keys: + - v1-pkg-cache - run: name: Run the end-to-end test suite command: | make e2e + - save_cache: + key: v1-pkg-cache + paths: + - "/go/pkg" - run: name: Collect logs on failure from vkubelet-mock-0 command: |