End testing: revert to full build #64
Workflow file for this run
This file contains 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 and upload | |
on: # yamllint disable-line rule:truthy | |
push: | |
paths-ignore: | |
- 'README.md' | |
release: | |
types: [created] | |
jobs: | |
build_wheels: | |
name: Build wheels on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
if: github.event_name == 'release' && github.event.action == 'created' | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build wheels | |
uses: pypa/cibuildwheel@v2.21.3 | |
env: | |
CIBW_TEST_COMMAND_WINDOWS: > | |
cd /d {package} | |
&& ( rmdir ..\ugrapheme_tmp /s /q 2>NUL || cd . ) | |
&& mkdir ..\ugrapheme_tmp | |
&& cd ..\ugrapheme_tmp | |
&& xcopy {package} /s | |
&& rmdir ugrapheme /s /q | |
&& pytest | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }} | |
path: ./wheelhouse/*.whl | |
build_sdist: | |
name: Build source distribution | |
runs-on: ubuntu-latest | |
if: github.event_name == 'release' && github.event.action == 'created' | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: python3 -m pip install --upgrade build | |
- name: Build sdist | |
run: python3 -m build --sdist | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: cibw-sdist | |
path: dist/*.tar.gz | |
upload_pypi: | |
needs: [build_wheels, build_sdist] | |
runs-on: ubuntu-latest | |
environment: production | |
permissions: | |
id-token: write | |
if: | | |
github.event_name == 'release' && github.event.action == 'created' | |
&& !endsWith(github.ref, '-test') | |
steps: | |
- uses: actions/download-artifact@v4 | |
with: | |
# unpacks all CIBW artifacts into dist/ | |
pattern: cibw-* | |
path: dist | |
merge-multiple: true | |
- uses: pypa/gh-action-pypi-publish@release/v1 | |
upload_pypi_test: | |
needs: [build_wheels, build_sdist] | |
runs-on: ubuntu-latest | |
environment: production | |
permissions: | |
id-token: write | |
if: | | |
github.event_name == 'release' && github.event.action == 'created' | |
&& endsWith(github.ref, '-test') | |
steps: | |
- uses: actions/download-artifact@v4 | |
with: | |
# unpacks all CIBW artifacts into dist/ | |
pattern: cibw-* | |
path: dist | |
merge-multiple: true | |
- uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
repository-url: https://test.pypi.org/legacy/ | |
upload_gh_release: | |
needs: [build_wheels, build_sdist] | |
runs-on: ubuntu-latest | |
environment: production | |
permissions: | |
contents: write | |
id-token: write | |
steps: | |
- uses: actions/download-artifact@v4 | |
with: | |
# unpacks all CIBW artifacts into dist/ | |
pattern: cibw-* | |
path: dist | |
merge-multiple: true | |
- uses: sigstore/gh-action-sigstore-python@v2.1.1 | |
with: | |
inputs: >- | |
./dist/*.tar.gz | |
./dist/*.whl | |
- uses: softprops/action-gh-release@v2 | |
with: | |
files: dist/** |