aboutsummaryrefslogtreecommitdiffstats
path: root/build_scripts
diff options
context:
space:
mode:
authorSimo Fält <simo.falt@qt.io>2023-01-19 15:06:46 +0200
committerSimo Fält <simo.falt@qt.io>2023-02-22 13:14:26 +0200
commit4c42779f7fda9290076c1818379e4fbc78d308ab (patch)
tree37da1392f4f961084332f0f2d7c9060e453fbc86 /build_scripts
parent9a5a0310d73fddf88848ed73949237af255d828f (diff)
CI: Change the way we create wheels in CI
Instead of calling setup.py to re-use binaries and creating wheels we can call create_wheels.py directly from CI instructions. This enables us to sign Windows binaries in correct phase and directory. Pick-to: 6.4 Change-Id: I7c69abe6e0b6591fb1df1e2f2805a015a49ce944 Reviewed-by: Cristian Maureira-Fredes <cristian.maureira-fredes@qt.io>
Diffstat (limited to 'build_scripts')
-rw-r--r--build_scripts/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/build_scripts/utils.py b/build_scripts/utils.py
index 54677a65f..633e413d0 100644
--- a/build_scripts/utils.py
+++ b/build_scripts/utils.py
@@ -943,7 +943,7 @@ def get_python_dict(python_script_path):
def get_qtci_virtualEnv(python_ver, host, hostArch, targetArch):
_pExe = "python"
- _env = f"env{python_ver}"
+ _env = f"{os.environ.get('PYSIDE_VIRTUALENV') or 'env'+python_ver}"
env_python = f"{_env}/bin/python"
env_pip = f"{_env}/bin/pip"