Skip to content
Snippets Groups Projects
Commit 99fd1584 authored by Jürg Billeter's avatar Jürg Billeter
Browse files

_project.py: Include fail-on-overlap setting in cache key

Fixes #473.
parent f2484fe4
No related branches found
No related tags found
Loading
Pipeline #25900089 passed
......@@ -164,8 +164,12 @@ class Project():
if self._cache_key is None:
# Anything that alters the build goes into the unique key
# (currently nothing here)
self._cache_key = _cachekey.generate_key({})
cache_key_dict = {}
if self.fail_on_overlap:
cache_key_dict['fail-on-overlap'] = True
self._cache_key = _cachekey.generate_key(cache_key_dict)
return self._cache_key
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment