Skip to content

Commit

Permalink
Merge pull request #63 from ReadAlongs/release_from_ci
Browse files Browse the repository at this point in the history
Build and upload releases from GitHub CI
  • Loading branch information
dhdaines authored Feb 1, 2024
2 parents f677539 + 3ca2501 commit 607beda
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 6 deletions.
39 changes: 35 additions & 4 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,25 @@ on:
branches:
- master
workflow_dispatch:
release:
types:
- published

jobs:
build_sdist:
name: Build source distribution
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Build sdist
run: pipx run build --sdist

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: cibw-sdist
path: dist/*.tar.gz

build_wheels:
Expand All @@ -28,11 +34,36 @@ jobs:
os: [ubuntu-latest, windows-latest, macos-latest]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Build wheels
uses: pypa/cibuildwheel@v2.16.5

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: cibw-wheels-${{ matrix.os }}
path: ./wheelhouse/*.whl

upload_pypi:
needs:
- build_wheels
- build_sdist
runs-on: ubuntu-latest
environment: release
permissions:
id-token: write
# Comment this line for testing
if: github.event_name == 'release' && github.event.action == 'published'
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
# Uncomment these lines for testing
# with:
# repository-url: https://test.pypi.org/legacy/
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,4 @@ CMakeFiles
CTestTestfile.cmake
DartConfiguration.tcl
cmake_install.cmake
py/soundswallower/_version.py
9 changes: 7 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ build-backend = "scikit_build_core.build"

[project]
name = "soundswallower"
version = "0.6.1"
dynamic = ["version"]
description = "An even smaller speech recognizer"
readme = "README.md"
authors = [
Expand Down Expand Up @@ -41,7 +41,6 @@ soundswallower = "soundswallower.cli:main"
[tool.cibuildwheel]
# Build a reduced selection of binaries as there are tons of them
build = [
"pp310*",
"cp38-*",
"cp310-*",
"cp311-*",
Expand All @@ -53,6 +52,7 @@ skip = [
"cp*-macosx_x86_64",
"cp*-macosx_arm64",
"*_i686",
"*musl*",
"*-win32",
]

Expand All @@ -67,6 +67,11 @@ extend-ignore = "E203"
max-line-length = "88"

[tool.scikit-build]
metadata.version.provider = "scikit_build_core.metadata.setuptools_scm"
sdist.include = ["py/soundswallwer/_version.py"]
cmake.verbose = true
logging.level = "INFO"
wheel.packages = ["py/soundswallower"]

[tool.setuptools_scm]
write_to = "py/soundswallower/_version.py"

0 comments on commit 607beda

Please sign in to comment.