File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ references:
22
22
restore-build-dependency-cache : &restore-build-dependency-cache
23
23
restore_cache :
24
24
name : Restore build dependency cache
25
- key : deps-venv-1-{{ .Branch }}-{{ .Environment.CIRCLE_STAGE }}-{{ checksum ".circleci/requirements.txt" }}
25
+ key : deps-venv-1-{{ .Branch }}-{{ .Environment.CIRCLE_JOB }}-{{ checksum ".circleci/requirements.txt" }}
26
26
27
27
install-build-dependencies : &install-build-dependencies
28
28
run :
@@ -35,7 +35,7 @@ references:
35
35
save-build-dependency-cache : &save-build-dependency-cache
36
36
save_cache :
37
37
name : Save build dependency cache
38
- key : deps-venv-1-{{ .Branch }}-{{ .Environment.CIRCLE_STAGE }}-{{ checksum ".circleci/requirements.txt" }}
38
+ key : deps-venv-1-{{ .Branch }}-{{ .Environment.CIRCLE_JOB }}-{{ checksum ".circleci/requirements.txt" }}
39
39
paths :
40
40
- " venv"
41
41
@@ -70,15 +70,15 @@ references:
70
70
done
71
71
- restore_cache :
72
72
name : Restore .tox cache
73
- key : deps-tox-1-{{ .Branch }}-{{ .Environment.CIRCLE_STAGE }}-{{ checksum ".checksum" }}
73
+ key : deps-tox-1-{{ .Branch }}-{{ .Environment.CIRCLE_JOB }}-{{ checksum ".checksum" }}
74
74
- run :
75
75
name : Test
76
76
command : |
77
77
. venv/bin/activate
78
78
tox
79
79
- save_cache :
80
80
name : Save .tox cache
81
- key : deps-tox-1-{{ .Branch }}-{{ .Environment.CIRCLE_STAGE }}-{{ checksum ".checksum" }}
81
+ key : deps-tox-1-{{ .Branch }}-{{ .Environment.CIRCLE_JOB }}-{{ checksum ".checksum" }}
82
82
paths :
83
83
- " .tox"
84
84
You can’t perform that action at this time.
0 commit comments