summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorNirbheek Chauhan <nirbheek@centricular.com>2020-03-04 05:34:54 +0530
committerNirbheek Chauhan <nirbheek@centricular.com>2020-03-04 19:59:08 +0530
commit9a0dda814d2c141843950916f18c76a20fc8fa44 (patch)
tree348781ba5c6dd54d74baa04154aa445bbd0a338b /config
parentf5da196fb311b7253b91b1c78fa6b0b7d7ec2a9a (diff)
windows.config: Place temporary wine files in var/tmp
This is a more obvious place for it, and is self-documenting in the CI YAML too, where we exclude it from the cerbero-deps tarball.
Diffstat (limited to 'config')
-rw-r--r--config/windows.config4
1 files changed, 3 insertions, 1 deletions
diff --git a/config/windows.config b/config/windows.config
index e1c76819..3eafc494 100644
--- a/config/windows.config
+++ b/config/windows.config
@@ -21,7 +21,9 @@ if platform == Platform.WINDOWS:
build = 'x86_64-w64-mingw32'
else:
env['WIX'] = os.path.join(build_tools_prefix, 'lib', 'wix')
- env['WINEPREFIX'] = os.path.join(build_tools_prefix, 'share', 'wine')
+ # NOTE: Ensure that whatever directory this goes into is ignored by the
+ # .cerbero deps CI job otherwise we will tar up ~1GB of generated data.
+ env['WINEPREFIX'] = os.path.join(build_tools_prefix, 'var', 'tmp', 'wine')
env['WINEDEBUG'] = 'fixme-all'
separator = ':'