Skip to content

Add workflow based on cibuildwheels #91

Add workflow based on cibuildwheels

Add workflow based on cibuildwheels #91

Workflow file for this run

name: wheel
on:
push:
pull_request:
workflow_dispatch:
release:
types: [published]
jobs:
source:
runs-on: ubuntu-latest
defaults:
run:
shell: bash -l {0}
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: mamba-org/setup-micromamba@v1
with:
environment-file: assets/ci/build-env.yaml
- run: |
meson setup _build
meson dist -C _build --no-tests --include-subprojects
mv _build/meson-dist/*.tar.xz .
- uses: actions/upload-artifact@v4
with:
name: dftd3-source
path: ./*.tar.xz
retention-days: 5
sdist:
runs-on: ubuntu-latest
defaults:
run:
shell: bash -l {0}
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: mamba-org/setup-micromamba@v1
with:
environment-file: assets/ci/python-env.yaml
create-args: >-
meson-python
python-build
- name: Reorganize repository
run: |
git config user.email ""
git config user.name "dummy"
git subtree add --prefix python/subprojects/s-dftd3 . HEAD
git mv {assets,python/dftd3}/parameters.toml
git mv python/{mesonpep517,pyproject}.toml
git commit -m "Python dist"
- run: |
python -m build python/ --sdist --outdir . -n
- uses: actions/upload-artifact@v4
with:
name: dftd3-python-sdist
path: ./*.tar.gz
retention-days: 5
manylinux:
needs:
- sdist
runs-on: ubuntu-latest
container: condaforge/linux-anvil-cos7-x86_64
strategy:
fail-fast: false
matrix:
python: ['3.7', '3.8', '3.9', '3.10', '3.11']
defaults:
run:
shell: ${{ matrix.shell || 'bash -l {0}' }}
steps:
- name: Create environment
run: >-
mamba create -n wheel
--yes
c-compiler
fortran-compiler
python=${{ matrix.python }}
auditwheel
git
python
pip
python-build
pkgconfig
patchelf
cffi
numpy
meson
unzip
wheel
- name: Download sdist
uses: actions/download-artifact@v3
with:
name: dftd3-python-sdist
- name: Build wheel
run: |
conda activate wheel
set -ex
tar xvf dftd3-*.tar.gz
python -m build dftd3-*/ --wheel
auditwheel show dftd3-*/dist/*.whl
auditwheel repair -w . dftd3-*/dist/*.whl --plat ${{ env.plat }}
env:
plat: manylinux${{ matrix.python == '3.6' && '2010' || '_2_12' }}_x86_64
- uses: actions/upload-artifact@v4
with:
name: dftd3-python-${{ matrix.python }}
path: ./*.whl
retention-days: 5
wheels:
needs:
- sdist
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-13, macos-14]
defaults:
run:
shell: bash -l {0}
steps:
# Used to host cibuildwheel
- uses: actions/setup-python@v5
- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.18.1
- name: Download sdist
uses: actions/download-artifact@v4
with:
name: dftd3-python-sdist
- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse *.tar.gz
env:
CIBW_BUILD_VERBOSITY: 1
# CIBW_ARCHS_MACOS: x86_64
CIBW_ENVIRONMENT_MACOS: CC=gcc-11 CXX=g++-11 FC=gfortran-11
CIBW_BEFORE_BUILD_WINDOWS: choco upgrade mingw
CIBW_ARCHS: auto64
# CIBW_SKIP: skip = pp* *-musllinux*
- uses: actions/upload-artifact@v4
with:
name: dftd3-python-${{ matrix.os }}
path: ./wheelhouse/*.whl
release:
needs:
- source
- sdist
- manylinux
- wheels
runs-on: ubuntu-latest
steps:
- name: Download artifacts
uses: actions/download-artifact@v4
with:
path: ${{ github.workspace }} # This will download all files
- name: Create SHA256 checksums
run: |
set -ex
for output in dftd3*/*dftd3*; do
pushd $(dirname "$output")
sha256sum $(basename "$output") | tee $(basename "$output").sha256
popd
done
- name: Copy release artifacts
run: |
mkdir dist/
cp -v dftd3*/dftd3*.whl dftd3*/dftd3*.tar.gz dist/
- name: Publish to Test PyPI
if: ${{ github.event_name == 'release' }}
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.TEST_PYPI_TOKEN }}
repository_url: https://test.pypi.org/legacy/
- name: Upload assets
uses: svenstaro/upload-release-action@v2
if: ${{ github.event_name == 'release' }}
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: dftd3*/*dftd3*
file_glob: true
tag: ${{ github.ref }}
overwrite: true
- name: Publish to PyPI
if: ${{ github.event_name == 'release' }}
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_TOKEN }}