forked from bitcoin/bitcoin
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5261 from ogabrielides/rc7_bump
chore: bump version to rc.7
- Loading branch information
Showing
28 changed files
with
4,792 additions
and
476 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
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
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 |
---|---|---|
|
@@ -43,16 +43,34 @@ jobs: | |
python: | ||
- major-dot-minor: '3.7' | ||
cibw-build: 'cp37-*' | ||
manylinux: | ||
arch: manylinux2014 | ||
intel: manylinux2010 | ||
matrix: '3.7' | ||
- major-dot-minor: '3.8' | ||
cibw-build: 'cp38-*' | ||
manylinux: | ||
arch: manylinux2014 | ||
intel: manylinux2010 | ||
matrix: '3.8' | ||
- major-dot-minor: '3.9' | ||
cibw-build: 'cp39-*' | ||
manylinux: | ||
arch: manylinux2014 | ||
intel: manylinux2010 | ||
matrix: '3.9' | ||
- major-dot-minor: '3.10' | ||
cibw-build: 'cp310-*' | ||
manylinux: | ||
arch: manylinux2014 | ||
intel: manylinux2010 | ||
matrix: '3.10' | ||
- major-dot-minor: '3.11' | ||
cibw-build: 'cp311-*' | ||
manylinux: | ||
arch: manylinux2014 | ||
intel: manylinux2014 | ||
matrix: '3.11' | ||
arch: | ||
- name: ARM | ||
matrix: arm | ||
|
@@ -114,25 +132,24 @@ jobs: | |
- name: Install pipx | ||
run: | | ||
pip install pipx | ||
- name: Build and test | ||
uses: pypa/[email protected] | ||
with: | ||
output-dir: dist | ||
env: | ||
CIBW_PRERELEASE_PYTHONS: True | ||
CIBW_BUILD_VERBOSITY_MACOS: 0 | ||
CIBW_BUILD_VERBOSITY_LINUX: 0 | ||
CIBW_BUILD_VERBOSITY_WINDOWS: 0 | ||
CIBW_BUILD: ${{ matrix.python.cibw-build }} | ||
CIBW_SKIP: '*-manylinux_i686 *-win32 *-musllinux_*' | ||
CIBW_MANYLINUX_AARCH64_IMAGE: manylinux2014 | ||
CIBW_MANYLINUX_X86_64_IMAGE: manylinux2010 | ||
CIBW_ENVIRONMENT_LINUX: "PATH=/project/cmake-3.17.3-Linux-`uname -m`/bin:$PATH" | ||
CIBW_MANYLINUX_AARCH64_IMAGE: ${{ matrix.python.manylinux['arm'] }} | ||
CIBW_MANYLINUX_X86_64_IMAGE: ${{ matrix.python.manylinux['intel'] }} | ||
CIBW_ENVIRONMENT_LINUX: "PATH=/project/cmake-3.14.3-Linux-`uname -m`/bin:$PATH" | ||
CIBW_BEFORE_ALL_LINUX: > | ||
yum -y install epel-release | ||
&& echo "epel-release installed" | ||
&& yum -y install lzip | ||
&& echo "lzip installed" | ||
&& curl -L https://github.com/Kitware/CMake/releases/download/v3.17.3/cmake-3.17.3-Linux-`uname -m`.sh > cmake.sh | ||
&& curl -L https://github.com/Kitware/CMake/releases/download/v3.14.3/cmake-3.14.3-Linux-`uname -m`.sh > cmake.sh | ||
&& yes | sh cmake.sh | cat | ||
&& rm -f /usr/bin/cmake | ||
&& curl -L https://gmplib.org/download/gmp/gmp-6.2.1.tar.lz | tar x --lzip | ||
|
@@ -176,6 +193,8 @@ jobs: | |
&& cp {wheel} {dest_dir} | ||
CIBW_TEST_REQUIRES: pytest | ||
CIBW_TEST_COMMAND: py.test -v {project}/python-bindings/test.py | ||
run: | ||
pipx run --spec='cibuildwheel==2.9.0' cibuildwheel --output-dir dist 2>&1 | ||
|
||
- name: Upload artifacts | ||
uses: actions/upload-artifact@v3 | ||
|
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
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.