Publish #15
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: Publish | |
on: | |
release: | |
types: | |
# Note: editing the prerelease then marking as release does not trigger | |
# this pipeline | |
# - prereleased | |
- released | |
workflow_dispatch: | |
jobs: | |
release-pypi-linux: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build wheels | |
run: | | |
docker run --rm -v ${{ github.workspace }}:/src:rw --workdir=/src \ | |
pyscf/pyscf-pypa-env:latest \ | |
bash -exc '/opt/python/cp39-cp39/bin/pip wheel -v --no-deps --no-clean -w /root/wheelhouse /src && \ | |
ls /root/wheelhouse && \ | |
whl=`ls /root/wheelhouse/pyscf*_x86_64.whl` && \ | |
auditwheel -v repair "$whl" -w /src/linux-wheels' | |
- name: List available wheels | |
run: | | |
ls ${{ github.workspace }}/linux-wheels | |
- name: Publish to PyPI | |
run: | | |
pip3 install twine | |
export TWINE_USERNAME=__token__ | |
export TWINE_PASSWORD="${{ secrets.PYPI_API_TOKEN }}" | |
twine upload --verbose ${{ github.workspace }}/linux-wheels/* | |
release-pypi-aarch64: | |
runs-on: ubuntu-latest | |
env: | |
img: quay.io/pypa/manylinux2014_aarch64:2024-08-03-32dfa47 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up QEMU | |
id: qemu | |
uses: docker/setup-qemu-action@v2 | |
- name: Build Wheel | |
run: | | |
docker run --rm -v ${{ github.workspace }}:/src:rw --workdir=/src \ | |
${{ env.img }} \ | |
bash -exc '/opt/python/cp39-cp39/bin/pip install --upgrade pip setuptools && \ | |
yum install -y epel-release && \ | |
yum-config-manager --enable epel && \ | |
yum install -y openblas-devel gcc && \ | |
/opt/python/cp39-cp39/bin/pip wheel -v --no-deps --no-clean -w /root/wheelhouse /src && \ | |
ls /root/wheelhouse && \ | |
whl=`ls /root/wheelhouse/pyscf*-linux_*.whl` && \ | |
auditwheel -v repair "$whl" -w /src/linux-wheels' | |
- name: List available wheels | |
run: | | |
ls ${{ github.workspace }}/linux-wheels | |
- name: Publish to PyPI | |
run: | | |
pip3 install twine | |
export TWINE_USERNAME=__token__ | |
export TWINE_PASSWORD="${{ secrets.PYPI_API_TOKEN }}" | |
twine upload --verbose ${{ github.workspace }}/linux-wheels/* | |
release-pypi-macos-x86: | |
name: Build wheels for macos | |
runs-on: macos-12 | |
steps: | |
- uses: fortran-lang/setup-fortran@v1 | |
with: | |
compiler: gcc | |
version: 11 | |
- uses: actions/checkout@v3 | |
- name: Build wheels | |
uses: pypa/cibuildwheel@v2.14.1 | |
env: | |
CIBW_BUILD: cp311-macosx_x86_64 | |
CIBW_BUILD_VERBOSITY: "1" | |
with: | |
output-dir: mac-wheels | |
- name: Publish to PyPI | |
run: | | |
pip3 install twine | |
export TWINE_USERNAME=__token__ | |
export TWINE_PASSWORD="${{ secrets.PYPI_API_TOKEN }}" | |
twine upload --verbose mac-wheels/* | |
# GCC is not readily supported on Apple Silicon | |
# release-pypi-macos-arm64: | |
# name: Build wheels for Apple M chips | |
# runs-on: macos-12 | |
# steps: | |
# - uses: fortran-lang/setup-fortran@v1 | |
# with: | |
# compiler: gcc | |
# version: 11 | |
# - uses: actions/checkout@v3 | |
# - name: Build wheels | |
# uses: pypa/cibuildwheel@v2.14.1 | |
# env: | |
# CIBW_BUILD: cp311-macosx_arm64 | |
# CIBW_BUILD_VERBOSITY: "1" | |
# CIBW_ARCHS_MACOS: "x86_64 universal2 arm64" | |
# CMAKE_OSX_ARCHITECTURES: arm64 | |
# with: | |
# output-dir: mac-wheels | |
# - name: Publish to PyPI | |
# run: | | |
# pip3 install twine | |
# export TWINE_USERNAME=__token__ | |
# export TWINE_PASSWORD="${{ secrets.PYPI_API_TOKEN }}" | |
# twine upload --verbose mac-wheels/* |