Skip to content
Snippets Groups Projects
Commit de976f0f authored by Thomas Kluyver's avatar Thomas Kluyver
Browse files

See if we can build packages on Gitlab CI

parent 69d99fb7
No related branches found
No related tags found
No related merge requests found
Pipeline #161703 failed
image: python:3.11
variables:
PIP_CACHE_DIR: "$CI_PROJECT_DIR/.cache/pip"
cache:
paths:
- .cache/pip
before_script:
- python --version ; pip --version # For debugging
- python -m venv venv
- source venv/bin/activate
test:
script:
- pip install build auditwheel abi3audit pytest
- python -m build
- auditwheel repair dist/*.whl
- abi3audit -vs wheelhouse/*.whl
- pip install wheelhouse/*.whl
- pytest
artifacts:
paths:
- dist/*.tar.gz
- wheelhouse/*
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