mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-05 19:36:45 +02:00
Allow installing VCPKG inside working directory for GHA builds
This commit is contained in:
parent
f4f4137aa8
commit
8041f27713
1 changed files with 4 additions and 1 deletions
|
@ -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)):
|
||||
|
|
Loading…
Reference in a new issue