Skip to content
Snippets Groups Projects
Unverified Commit d027811f authored by Piotr Maślanka's avatar Piotr Maślanka
Browse files

fix

parent 3306a0e3
No related branches found
No related tags found
No related merge requests found
Pipeline #60998 canceled with stages
in 4 minutes
...@@ -68,10 +68,11 @@ test_python311: ...@@ -68,10 +68,11 @@ test_python311:
- branches - branches
stage: build stage: build
script: script:
- pip install --break-system-packages --upgrade Cython setuptools pip repairwheel - pip install --break-system-packages --upgrade Cython setuptools pip repairwheel doctor-wheel
- pip install --break-system-packages -r requirements.txt - pip install --break-system-packages -r requirements.txt
- python setup.py bdist_wheel - python setup.py bdist_wheel
- repairwheel dist/*.whl -o . - repairwheel dist/*.whl -o .
- doctor-wheel *.whl
after_script: after_script:
- pip install twine - pip install twine
- TWINE_PASSWORD=${CI_JOB_TOKEN} TWINE_USERNAME=gitlab-ci-token python3 -m twine upload --repository-url ${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/pypi dist/* - TWINE_PASSWORD=${CI_JOB_TOKEN} TWINE_USERNAME=gitlab-ci-token python3 -m twine upload --repository-url ${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/pypi dist/*
...@@ -85,6 +86,7 @@ upload_python311_armv7l: ...@@ -85,6 +86,7 @@ upload_python311_armv7l:
- mkdir dist2 - mkdir dist2
- mv *.whl dist2 - mv *.whl dist2
- repairwheel dist2/*.whl -o . - repairwheel dist2/*.whl -o .
- doctor-wheel *.whl
- TWINE_PASSWORD=${CI_JOB_TOKEN} TWINE_USERNAME=gitlab-ci-token python3 -m twine upload --repository-url ${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/pypi dist/* - TWINE_PASSWORD=${CI_JOB_TOKEN} TWINE_USERNAME=gitlab-ci-token python3 -m twine upload --repository-url ${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/pypi dist/*
only: only:
- tags - tags
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment