Skip to content

Checke package name

Checke package name #3

Workflow file for this run

---
name: Wheel Builds
on:
push:
tags:
- '*'
jobs:
build_wheels:
name: Build wheels
runs-on: ${{ matrix.os }}
environment: release
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-11, windows-latest]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
name: Install Python
with:
python-version: '3.10'
- uses: dtolnay/rust-toolchain@stable
if: runner.os != 'macOS'
- uses: dtolnay/rust-toolchain@1.73
if: runner.os == 'macOS'
- name: Build wheels
uses: pypa/cibuildwheel@v2.16.2
- uses: actions/upload-artifact@v3
with:
path: ./wheelhouse/*.whl
name: shared-wheel-builds
# build_wheels_macos_arm:
# name: Build wheels on macOS arm
# runs-on: ${{ matrix.os }}
# environment: release
# strategy:
# fail-fast: false
# matrix:
# os: [macos-11]
# steps:
# - uses: actions/checkout@v3
# - uses: actions/setup-python@v4
# name: Install Python
# with:
# python-version: '3.10'
# - uses: dtolnay/rust-toolchain@stable
# - name: Build wheels
# uses: pypa/cibuildwheel@v2.16.2
# env:
# CIBW_BEFORE_ALL: rustup target add aarch64-apple-darwin
# CIBW_ARCHS_MACOS: arm64 universal2
# CIBW_ENVIRONMENT: >-
# CARGO_BUILD_TARGET="aarch64-apple-darwin"
# PYO3_CROSS_LIB_DIR="/Library/Frameworks/Python.framework/Versions/$(python -c 'import sys; print(str(sys.version_info[0])+"."+str(sys.version_info[1]))')/lib/python$(python -c 'import sys; print(str(sys.version_info[0])+"."+str(sys.version_info[1]))')"
# - uses: actions/upload-artifact@v3
# with:
# path: ./wheelhouse/*.whl
# name: shared-wheel-builds
upload_shared_wheels:
name: Upload shared build wheels
runs-on: ubuntu-latest
environment: release
permissions:
id-token: write
needs: ["build_wheels"]
steps:
- uses: actions/download-artifact@v3
with:
name: shared-wheel-builds
path: deploy
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
packages-dir: deploy
# build_wheels_s390x:
# name: Build wheels on s390x
# runs-on: ${{ matrix.os }}
# environment: release
# permissions:
# id-token: write
# strategy:
# fail-fast: false
# matrix:
# os: [ubuntu-latest]
# steps:
# - uses: actions/checkout@v3
# - uses: actions/setup-python@v4
# name: Install Python
# with:
# python-version: '3.10'
# - uses: dtolnay/rust-toolchain@stable
# - name: Set up QEMU
# uses: docker/setup-qemu-action@v1
# with:
# platforms: all
# - name: Build wheels
# uses: pypa/cibuildwheel@v2.16.2
# env:
# CIBW_ARCHS_LINUX: s390x
# CIBW_TEST_SKIP: "cp*"
# - uses: actions/upload-artifact@v3
# with:
# path: ./wheelhouse/*.whl
# - name: Publish package distributions to PyPI
# uses: pypa/gh-action-pypi-publish@release/v1
# with:
# packages-dir: wheelhouse/
# build_wheels_ppc64le:
# name: Build wheels on ppc64le
# runs-on: ${{ matrix.os }}
# environment: release
# permissions:
# id-token: write
# strategy:
# fail-fast: false
# matrix:
# os: [ubuntu-latest]
# steps:
# - uses: actions/checkout@v3
# - uses: actions/setup-python@v4
# name: Install Python
# with:
# python-version: '3.10'
# - uses: dtolnay/rust-toolchain@stable
# - name: Set up QEMU
# uses: docker/setup-qemu-action@v1
# with:
# platforms: all
# - name: Build wheels
# uses: pypa/cibuildwheel@v2.16.2
# env:
# CIBW_ARCHS_LINUX: ppc64le
# CIBW_TEST_SKIP: "cp*"
# - uses: actions/upload-artifact@v3
# with:
# path: ./wheelhouse/*.whl
# - name: Publish package distributions to PyPI
# uses: pypa/gh-action-pypi-publish@release/v1
# with:
# packages-dir: wheelhouse/
# build_wheels_aarch64:
# name: Build wheels on ${{ matrix.os }}
# runs-on: ${{ matrix.os }}
# environment: release
# permissions:
# id-token: write
# strategy:
# fail-fast: false
# matrix:
# os: [ubuntu-latest]
# steps:
# - uses: actions/checkout@v3
# - uses: actions/setup-python@v4
# name: Install Python
# with:
# python-version: '3.10'
# - uses: dtolnay/rust-toolchain@stable
# - name: Set up QEMU
# uses: docker/setup-qemu-action@v1
# with:
# platforms: all
# - name: Build wheels
# uses: pypa/cibuildwheel@v2.16.2
# env:
# CIBW_ARCHS_LINUX: aarch64
# - uses: actions/upload-artifact@v3
# with:
# path: ./wheelhouse/*.whl
# - name: Publish package distributions to PyPI
# uses: pypa/gh-action-pypi-publish@release/v1
# with:
# packages-dir: wheelhouse/
sdist:
name: Build and publish terra sdist
runs-on: ${{ matrix.os }}
needs: ["upload_shared_wheels"]
environment: release
permissions:
id-token: write
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
name: Install Python
with:
python-version: '3.10'
- name: Install deps
run: pip install -U twine setuptools-rust wheel build
- name: Build sdist
run: python -m build . --sdist
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
metapackage:
name: Build and publish terra sdist
runs-on: ${{ matrix.os }}
needs: ["sdist"]
environment: release
permissions:
id-token: write
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
name: Install Python
with:
python-version: '3.10'
- name: Install deps
run: pip install -U twine setuptools-rust wheel build
- name: Build packages
run: |
set -e
cd qiskit_pkg
python -m build .
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
packages-dir: qiskit_pkg/dist