-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
223 changed files
with
6,460 additions
and
4,881 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -71,7 +71,7 @@ jobs: | |
lcov --add-tracefile python.info --add-tracefile rust.info --output-file coveralls.info | ||
- name: Coveralls | ||
uses: coverallsapp/[email protected].4 | ||
uses: coverallsapp/[email protected].6 | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
path-to-lcov: coveralls.info |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,15 +27,6 @@ on: | |
default: "default" | ||
required: false | ||
|
||
wheels-32bit: | ||
description: >- | ||
The action to take for Tier 1 wheels. | ||
Choose from 'default', 'build' or 'skip'. | ||
This builds multiple artifacts, which all match 'wheels-32bit-*'. | ||
type: string | ||
default: "default" | ||
required: false | ||
|
||
wheels-linux-s390x: | ||
description: >- | ||
The action to take for Linux s390x wheels. | ||
|
@@ -69,7 +60,7 @@ on: | |
python-version: | ||
description: "The Python version to use to host the build runner." | ||
type: string | ||
default: "3.10" | ||
default: "3.13" | ||
required: false | ||
|
||
pgo: | ||
|
@@ -127,39 +118,12 @@ jobs: | |
env: | ||
PGO_WORK_DIR: ${{ github.workspace }}/pgo-data | ||
PGO_OUT_PATH: ${{ github.workspace }}/merged.profdata | ||
- uses: pypa/cibuildwheel@v2.21.3 | ||
- uses: pypa/cibuildwheel@v2.22.0 | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
path: ./wheelhouse/*.whl | ||
name: ${{ inputs.artifact-prefix }}wheels-tier-1-${{ matrix.os }} | ||
|
||
wheels-32bit: | ||
name: "Wheels / 32bit" | ||
if: (inputs.wheels-32bit == 'default' && inputs.default-action || inputs.wheels-32bit) == 'build' | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: | ||
- ubuntu-latest | ||
- windows-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: ${{ inputs.python-version }} | ||
- uses: dtolnay/rust-toolchain@stable | ||
with: | ||
components: llvm-tools-preview | ||
- name: Build wheels | ||
uses: pypa/[email protected] | ||
env: | ||
CIBW_SKIP: 'pp* cp36-* cp37-* cp38-* *musllinux* *amd64 *x86_64' | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
path: ./wheelhouse/*.whl | ||
name: ${{ inputs.artifact-prefix }}wheels-32bit-${{ matrix.os }} | ||
|
||
wheels-linux-s390x: | ||
name: "Wheels / Linux s390x" | ||
if: (inputs.wheels-linux-s390x == 'default' && inputs.default-action || inputs.wheels-linux-s390x) == 'build' | ||
|
@@ -174,7 +138,7 @@ jobs: | |
- uses: docker/setup-qemu-action@v3 | ||
with: | ||
platforms: all | ||
- uses: pypa/cibuildwheel@v2.21.3 | ||
- uses: pypa/cibuildwheel@v2.22.0 | ||
env: | ||
CIBW_ARCHS_LINUX: s390x | ||
CIBW_TEST_SKIP: "cp*" | ||
|
@@ -197,7 +161,7 @@ jobs: | |
- uses: docker/setup-qemu-action@v3 | ||
with: | ||
platforms: all | ||
- uses: pypa/cibuildwheel@v2.21.3 | ||
- uses: pypa/cibuildwheel@v2.22.0 | ||
env: | ||
CIBW_ARCHS_LINUX: ppc64le | ||
CIBW_TEST_SKIP: "cp*" | ||
|
@@ -209,20 +173,14 @@ jobs: | |
wheels-linux-aarch64: | ||
name: "Wheels / Linux AArch64" | ||
if: (inputs.wheels-linux-aarch64 == 'default' && inputs.default-action || inputs.wheels-linux-aarch64) == 'build' | ||
runs-on: ubuntu-latest | ||
runs-on: ubuntu-24.04-arm | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: ${{ inputs.python-version }} | ||
- uses: dtolnay/rust-toolchain@stable | ||
- uses: docker/setup-qemu-action@v3 | ||
with: | ||
platforms: all | ||
- uses: pypa/[email protected] | ||
env: | ||
CIBW_ARCHS_LINUX: aarch64 | ||
CIBW_TEST_COMMAND: cp -r {project}/test . && QISKIT_PARALLEL=FALSE stestr --test-path test/python run --abbreviate -n test.python.compiler.test_transpiler | ||
- uses: pypa/[email protected] | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
path: ./wheelhouse/*.whl | ||
|
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
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
Oops, something went wrong.