From cee6abe02c80717c31d294ffa6ecf4b1538d568d Mon Sep 17 00:00:00 2001 From: Manuel Cortez Date: Sat, 29 Dec 2018 09:20:22 -0600 Subject: [PATCH] Run parallelized jobs --- .gitlab-ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b7cb471..f991bb1 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -4,10 +4,10 @@ variables: PYINSTALLER: "C:\\python37\\scripts\\pyinstaller.exe" PYTHON2: "C:\\python27\\python.exe" stages: - - build_py3 - - build_py2 + - build + python3_version: - type: build_py3 + type: build tags: - windows10 before_script: @@ -30,14 +30,14 @@ python3_version: expire_in: 1 day python2_version: - type: build_py2 + type: build tags: - windows7 before_script: - '%PYTHON2% -m pip install --upgrade pip' - '%PYTHON2% -m pip install --upgrade -r requirements.txt' - # Additionally, install py2exe for Py2 as it is not listed in requirements. - - '%PYTHON2% -m pip install --upgrade py2exe' + # Additionally, reinstall the right version of pypubsub (3.3.0). + - '%PYTHON2% -m pip install --upgrade pypubsub==3.3.0' script: - cd src - '%PYTHON2% setup.py py2exe'