From b6ada233383bb61fc2dc201171850444d93902f7 Mon Sep 17 00:00:00 2001 From: Gustavo Silva Paiva Date: Thu, 14 Nov 2019 02:28:15 -0400 Subject: [PATCH] Fix CI modules cache (#316) --- .circleci/config.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 89315c8cd..b139a90af 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -13,7 +13,7 @@ jobs: - restore_cache: # restores saved cache if no changes are detected since last run keys: - - v1-pkg-{{ checksum "go.sum" }} + - go-pkg-mod-{{ checksum "go.sum" }} - run: name: "Precommit and Coverage Report" @@ -22,9 +22,9 @@ jobs: mv coverage.html $TEST_RESULTS/ - save_cache: - key: v1-pkg-{{ checksum "go.sum" }} + key: go-pkg-mod-{{ checksum "go.sum" }} paths: - - "~/go/pkg/mod" + - "/go/pkg/mod" - store_artifacts: path: /tmp/test-results