Fix sysconfig relocator mangling NDK paths under /usr/local
#41
Workflow file for this run
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: Build Python Packages | |
| on: | |
| push: | |
| pull_request: | |
| workflow_dispatch: | |
| # Cancel in-flight runs when a newer commit lands on the same ref. | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build-matrix: | |
| name: Build Python ${{ matrix.python_version }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python_version: | |
| - 3.12.12 | |
| - 3.13.12 | |
| - 3.14.3 | |
| uses: ./.github/workflows/build-python-version.yml | |
| with: | |
| python_version: ${{ matrix.python_version }} | |
| secrets: inherit |