Skip to content

Commit

Permalink
[wip][CI] Debug CI
Browse files Browse the repository at this point in the history
  • Loading branch information
mxmlnkn committed Oct 6, 2024
1 parent a5885aa commit 4402e46
Showing 1 changed file with 4 additions and 10 deletions.
14 changes: 4 additions & 10 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -194,21 +194,15 @@ jobs:
python3 -m build
twine check dist/*
python3 -m pip install "$( find dist -name '*.tar.gz' | head -1 )"[full]
pip uninstall fast_zip_decryption || true
- name: Test Installation From Tarball
run: |
python3 -m build
ls -la dist/
zipinfo dist/*whl
unzip -o dist/*whl
echo "Try to repair wheel"
zip -FF dist/*whl --out fixed.zip
ls -la fixed.zip || true
if [[ -f fixed.zip ]]; then
echo "Repaired ZIP"
mv fixed.zip dist/*whl
fi
twine check dist/* || true
cat dist/*.tar.gz | base64
file dist/*
twine check dist/*
python3 -m pip install "$( find dist -name '*.tar.gz' | head -1 )"[full]
- name: Test Installation From Source
Expand Down

0 comments on commit 4402e46

Please sign in to comment.