From ac5173d75f85c70dd77dbe344270897626a67278 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20Ma=C5=9Blanka?= <piotr.maslanka@ericsson.com> Date: Mon, 12 Aug 2024 22:51:56 +0200 Subject: [PATCH] add pages --- .gitlab-ci.yml | 28 +++++++++------------------- 1 file changed, 9 insertions(+), 19 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 149da16..b96e8f8 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -129,6 +129,7 @@ build_python311: - pip install --break-system-packages --upgrade Cython setuptools pip repairwheel doctor-wheel - pip install --break-system-packages -r requirements.txt - python setup.py bdist_wheel + - mv dist/*.whl . - repairwheel dist/*.whl -o . - doctor-wheel *.whl artifacts: @@ -143,53 +144,42 @@ build_python311: - branches -deploy_python35: - extends: .build_python - image: python:3.5 - - -deploy_python36: - extends: .build_python - image: python:3.5 - - - -deploy_python35: +build_python35: extends: .build_python image: python:3.5 -deploy_python35: +build_python36: extends: .build_python image: python:3.6 -deploy_python37: +build_python37: extends: .build_python image: python:3.7 -deploy_python38: +build_python38: extends: .build_python image: python:3.8 -deploy_python39: +build_python39: extends: .build_python image: python:3.9 -deploy_python310: +build_python310: extends: .build_python image: python:3.10 -deploy_python311: +build_python311: extends: .build_python image: python:3.11 -deploy_python312: +build_python312: extends: .build_python image: python:3.12 \ No newline at end of file -- GitLab