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

fix

parent 0d0b6e65
No related branches found
No related tags found
No related merge requests found
Pipeline #60997 failed with stages
in 4 minutes and 28 seconds
......@@ -68,10 +68,10 @@ test_python311:
- branches
stage: build
script:
- pip install --break-system-packages --upgrade Cython setuptools pip
- pip install --break-system-packages --upgrade Cython setuptools pip repairwheel
- pip install --break-system-packages -r requirements.txt
- python setup.py bdist_wheel
- cp dist/*.whl .
- repairwheel dist/*.whl -o .
after_script:
- 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/*
......@@ -82,6 +82,9 @@ upload_python311_armv7l:
dependencies:
- build_python311_armv7l
script:
- mkdir dist2
- mv *.whl dist2
- repairwheel dist2/*.whl -o .
- 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:
- 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