From 9e5989863c4229620cc59f0d2c75fbef5c82cdfc Mon Sep 17 00:00:00 2001 From: Manuel Cortez Date: Tue, 5 Jan 2021 13:56:59 -0600 Subject: [PATCH] Attempt to install a 32 bit python version with chocolatey --- .gitlab-ci.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a4f2f42..e8e5dfc 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -17,13 +17,12 @@ before_script: - Set-Variable -Name "time" -Value (date -Format "%H:%m") - echo ${time} - echo "started by ${GITLAB_USER_NAME}" - - choco install python3 -y + - choco install python3-x86_32 nsis -y - refreshenv - '&$env:PYTHON3_32 -V' - '&$env:PYTHON3_32 -m pip install --upgrade pip' - '&$env:PYTHON3_32 -m pip install --upgrade -r requirements.txt' - '&$env:PYTHON3_32 -m pip uninstall enum34 -y' - - python -V test: extends: