mirror of
https://github.com/overte-org/overte.git
synced 2025-04-06 17:12:35 +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
|
self.noClean = True
|
||||||
else:
|
else:
|
||||||
defaultBasePath = os.path.expanduser('~/vircadia-files/vcpkg')
|
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:
|
if self.args.android:
|
||||||
self.basePath = os.path.join(self.basePath, 'android')
|
self.basePath = os.path.join(self.basePath, 'android')
|
||||||
if (not os.path.isdir(self.basePath)):
|
if (not os.path.isdir(self.basePath)):
|
||||||
|
|
Loading…
Reference in a new issue