From 8041f27713efc306bd3f690c7b7b5e3ed6b9abb1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julian=20Gro=C3=9F?= Date: Thu, 16 Sep 2021 06:22:03 +0200 Subject: [PATCH] Allow installing VCPKG inside working directory for GHA builds --- hifi_vcpkg.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/hifi_vcpkg.py b/hifi_vcpkg.py index 3ec86dfd5a..48d5645119 100644 --- a/hifi_vcpkg.py +++ b/hifi_vcpkg.py @@ -61,7 +61,10 @@ endif() self.noClean = True else: defaultBasePath = os.path.expanduser('~/vircadia-files/vcpkg') - self.basePath = os.getenv('HIFI_VCPKG_BASE', defaultBasePath) + if 'CI_WORKSPACE' in os.environ: + self.basePath = os.path.join(os.getenv('CI_WORKSPACE'), 'vircadia-files/vcpkg') + else: + self.basePath = os.getenv('HIFI_VCPKG_BASE', defaultBasePath) if self.args.android: self.basePath = os.path.join(self.basePath, 'android') if (not os.path.isdir(self.basePath)):