Test pmma in manylinux_2_28_x86_64 #5
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Test pmma in manylinux_2_28_x86_64 | |
| on: | |
| workflow_dispatch: # Allow manual triggering | |
| jobs: | |
| test-manylinux: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout dummy repo (if needed) | |
| uses: actions/checkout@v4 | |
| - name: Set up Docker container (manylinux_2_28_x86_64) | |
| run: | | |
| docker run --rm -v $(pwd):/io quay.io/pypa/manylinux_2_28_x86_64 /bin/bash -c " | |
| /opt/python/cp310-cp310/bin/python3.10 -m pip install --upgrade pip | |
| /opt/python/cp310-cp310/bin/python3.10 -m pip install pmma==5.0.10 | |
| /opt/python/cp310-cp310/bin/python3.10 -c 'import pmma; print(pmma.__version__)' | |
| " |