1
0
mirror of https://github.com/open-telemetry/opentelemetry-go.git synced 2025-01-01 22:09:57 +02:00

Fix CI modules cache (#316)

This commit is contained in:
Gustavo Silva Paiva 2019-11-14 02:28:15 -04:00 committed by rghetia
parent 29509781bd
commit b6ada23338

View File

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