Commit d8ef571c authored by nimrod's avatar nimrod
Browse files

Template for running auditwheel.

parent ea974214
Loading
Loading
Loading
Loading
Loading
+11 −0
Original line number Diff line number Diff line
@@ -29,6 +29,17 @@ build-wheel:
    - job: build-wheel
      artifacts: true

.audit-wheel:
  extends: .python3
  stage: test
  before_script:
    - pip install auditwheel
  script:
    - find dist/ -name '*.whl' -print0 | xargs --null auditwheel --verbose show
  needs:
    - job: build-wheel
      artifacts: true

pypi-upload:
  extends: .python3
  stage: deploy