Skip to content

Commit

Permalink
CI attemp 3/n
Browse files Browse the repository at this point in the history
  • Loading branch information
quantumgizmos committed Jun 25, 2024
1 parent 3b43ad8 commit 5a1e5a4
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 76 deletions.
116 changes: 41 additions & 75 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,108 +1,74 @@
name: Build
name: Build and Publish

on:
workflow_dispatch:
pull_request:
push:
branches:
- release
- release

jobs:
build_sdist:
name: Build SDist
runs-on: ubuntu-latest
steps:
- name: Checkout out repo and submodules
uses: actions/checkout@v3
with:
submodules: true

- name: Checkout out repo and submodules
uses: actions/checkout@v3
with:
submodules: true

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

- name: Check metadata
run: pipx run twine check dist/*
- name: Build SDist
run: pipx run build --sdist

- uses: actions/upload-artifact@v3
with:
path: dist/*.tar.gz
- name: Check metadata
run: pipx run twine check dist/*

- name: Upload SDist
uses: actions/upload-artifact@v3
with:
path: dist/*.tar.gz

build_wheels:
runs-on: ${{ matrix.os_dist.os }}
# env:
# CIBW_BUILD: "${{ matrix.os_dist.dist }}"
# MACOSX_DEPLOYMENT_TARGET: "13.1"
# CIBW_ARCHS_MACOS: "arm64 x86_64"
#CIBW_REPAIR_WHEEL_COMMAND_MACOS: delocate-wheel -w {dest_dir} -v {wheel}
name: Build Wheels
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
os_dist: [
# macosx x86_64
{os: macos-latest, dist: cp38-macosx_x86_64},
{os: macos-latest, dist: cp39-macosx_x86_64},
{os: macos-latest, dist: cp310-macosx_x86_64},
{os: macos-latest, dist: cp311-macosx_x86_64},
{os: macos-latest, dist: cp312-macosx_x86_64},

# macosx arm64
{os: macos-latest, dist: cp38-macosx_arm64},
{os: macos-latest, dist: cp39-macosx_arm64},
{os: macos-latest, dist: cp310-macosx_arm64},
{os: macos-latest, dist: cp311-macosx_arm64},
{os: macos-latest, dist: cp312-macosx_arm64},

#macosx universal2
{os: macos-latest, dist: cp38-macosx_universal2},
{os: macos-latest, dist: cp39-macosx_universal2},
{os: macos-latest, dist: cp310-macosx_universal2},
{os: macos-latest, dist: cp311-macosx_universal2},
{os: macos-latest, dist: cp312-macosx_universal2},

# windows amd64
{os: windows-latest, dist: cp38-win_amd64},
{os: windows-latest, dist: cp39-win_amd64},
{os: windows-latest, dist: cp310-win_amd64},
{os: windows-latest, dist: cp311-win_amd64},
{os: windows-latest, dist: cp312-win_amd64},

# ubuntu x86_64
{os: ubuntu-latest, dist: cp38-manylinux_x86_64},
{os: ubuntu-latest, dist: cp39-manylinux_x86_64},
{os: ubuntu-latest, dist: cp310-manylinux_x86_64},
{os: ubuntu-latest, dist: cp311-manylinux_x86_64},
{os: ubuntu-latest, dist: cp312-manylinux_x86_64},

]
python-version: [3.8, 3.9, 3.10, 3.11, 3.12]
os: [macos-latest, windows-latest, ubuntu-latest]
architecture: [x86_64, arm64]
steps:
- uses: actions/checkout@v3
with:
submodules: true

- uses: pypa/cibuildwheel@v2.11.1
- name: Checkout out repo and submodules
uses: actions/checkout@v3
with:
submodules: true

- uses: actions/upload-artifact@v3
with:
path: ./wheelhouse/*.whl
- name: Build Wheels
uses: pypa/cibuildwheel@v2.11.1
with:
python-version: ${{ matrix.python-version }}
build-options: --arch 64
platform: ${{ matrix.os }}

- name: Upload wheels
uses: actions/upload-artifact@v3
with:
path: wheelhouse/*.whl
- name: Upload Wheels
uses: actions/upload-artifact@v3
with:
path: wheelhouse/*.whl

upload_pypi:
needs: [ build_wheels, build_sdist ]
name: Upload to Test PyPI
needs: [build_wheels, build_sdist]
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v3
- name: Download artifacts
uses: actions/download-artifact@v3
with:
name: artifact
path: dist
- uses: pypa/gh-action-pypi-publish@release/v1

- name: Publish to Test PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.LDPC_TEST_PYPI }}
repository-url: https://test.pypi.org/legacy/
skip-existing: true
verbose: true
verbose: true
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ dependencies = [
"sinter",
"BeliefMatching"
]
version = "2.0.16"
version = "2.0.17"

[tool.setuptools.packages.find]
where = ["src_python"]
Expand Down

0 comments on commit 5a1e5a4

Please sign in to comment.