aboutsummaryrefslogtreecommitdiffstats
path: root/3rdparty/pybind11/.github/workflows/ci.yml
diff options
context:
space:
mode:
Diffstat (limited to '3rdparty/pybind11/.github/workflows/ci.yml')
-rw-r--r--3rdparty/pybind11/.github/workflows/ci.yml688
1 files changed, 487 insertions, 201 deletions
diff --git a/3rdparty/pybind11/.github/workflows/ci.yml b/3rdparty/pybind11/.github/workflows/ci.yml
index 73424f92..213c6900 100644
--- a/3rdparty/pybind11/.github/workflows/ci.yml
+++ b/3rdparty/pybind11/.github/workflows/ci.yml
@@ -9,6 +9,15 @@ on:
- stable
- v*
+concurrency:
+ group: test-${{ github.ref }}
+ cancel-in-progress: true
+
+env:
+ PIP_ONLY_BINARY: numpy
+ FORCE_COLOR: 3
+ PYTEST_TIMEOUT: 300
+
jobs:
# This is the "main" test suite, which tests a large number of different
# versions of default compilers and Python versions in GitHub Actions.
@@ -16,74 +25,66 @@ jobs:
strategy:
fail-fast: false
matrix:
- runs-on: [ubuntu-latest, windows-latest, macos-latest]
+ runs-on: [ubuntu-latest, windows-2022, macos-latest]
python:
- - 2.7
- - 3.5
- - 3.6
- - 3.7
- - 3.8
- - 3.9
- # - 3.10.0-alpha.1 - need next release for pybind11 fix
- - pypy2
- - pypy3
+ - '3.6'
+ - '3.9'
+ - '3.10'
+ - '3.11-dev'
+ - 'pypy-3.7'
+ - 'pypy-3.8'
+ - 'pypy-3.9'
# Items in here will either be added to the build matrix (if not
# present), or add new keys to an existing matrix element if all the
# existing keys match.
#
- # We support three optional keys: args (both build), args1 (first
- # build), and args2 (second build).
+ # We support an optional key: args, for cmake args
include:
# Just add a key
- runs-on: ubuntu-latest
- python: 3.6
+ python: '3.6'
args: >
-DPYBIND11_FINDPYTHON=ON
- - runs-on: windows-latest
- python: 3.6
+ -DCMAKE_CXX_FLAGS="-D_=1"
+ - runs-on: ubuntu-latest
+ python: 'pypy-3.8'
args: >
-DPYBIND11_FINDPYTHON=ON
- - runs-on: ubuntu-latest
- python: 3.8
+ - runs-on: windows-2019
+ python: '3.6'
args: >
-DPYBIND11_FINDPYTHON=ON
-
- # These items will be removed from the build matrix, keys must match.
- exclude:
- # Currently 32bit only, and we build 64bit
- - runs-on: windows-latest
- python: pypy2
- - runs-on: windows-latest
- python: pypy3
-
- # Let's drop a few macOS runs since that tends to be 2.7 or 3.8+
- - runs-on: macos-latest
- python: 3.6
- - runs-on: macos-latest
- python: 3.7
+ # Inject a couple Windows 2019 runs
+ - runs-on: windows-2019
+ python: '3.9'
name: "🐍 ${{ matrix.python }} • ${{ matrix.runs-on }} • x64 ${{ matrix.args }}"
runs-on: ${{ matrix.runs-on }}
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- name: Setup Python ${{ matrix.python }}
- uses: actions/setup-python@v2
+ uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- - name: Setup Boost (Windows / Linux latest)
- shell: bash
- run: echo "BOOST_ROOT=$BOOST_ROOT_1_72_0" >> $GITHUB_ENV
+ - name: Setup Boost (Linux)
+ # Can't use boost + define _
+ if: runner.os == 'Linux' && matrix.python != '3.6'
+ run: sudo apt-get install libboost-dev
+
+ - name: Setup Boost (macOS)
+ if: runner.os == 'macOS'
+ run: brew install boost
- name: Update CMake
- uses: jwlawson/actions-setup-cmake@v1.4
+ uses: jwlawson/actions-setup-cmake@v1.12
- name: Cache wheels
if: runner.os == 'macOS'
- uses: actions/cache@v2
+ uses: actions/cache@v3
with:
# This path is specific to macOS - we really only need it for PyPy NumPy wheels
# See https://github.com/actions/cache/blob/master/examples.md#python---pip
@@ -93,7 +94,8 @@ jobs:
key: ${{ runner.os }}-pip-${{ matrix.python }}-x64-${{ hashFiles('tests/requirements.txt') }}
- name: Prepare env
- run: python -m pip install -r tests/requirements.txt --prefer-binary
+ run: |
+ python -m pip install -r tests/requirements.txt
- name: Setup annotations on Linux
if: runner.os == 'Linux'
@@ -117,7 +119,7 @@ jobs:
- name: C++11 tests
# TODO: Figure out how to load the DLL on Python 3.8+
- if: "!(runner.os == 'Windows' && (matrix.python == 3.8 || matrix.python == 3.9))"
+ if: "!(runner.os == 'Windows' && (matrix.python == 3.8 || matrix.python == 3.9 || matrix.python == '3.10' || matrix.python == '3.11-dev' || matrix.python == 'pypy-3.8'))"
run: cmake --build . --target cpptest -j 2
- name: Interface test C++11
@@ -127,7 +129,7 @@ jobs:
run: git clean -fdx
# Second build - C++17 mode and in a build directory
- - name: Configure ${{ matrix.args2 }}
+ - name: Configure C++17
run: >
cmake -S . -B build2
-DPYBIND11_WERROR=ON
@@ -135,7 +137,6 @@ jobs:
-DDOWNLOAD_EIGEN=ON
-DCMAKE_CXX_STANDARD=17
${{ matrix.args }}
- ${{ matrix.args2 }}
- name: Build
run: cmake --build build2 -j 2
@@ -145,32 +146,117 @@ jobs:
- name: C++ tests
# TODO: Figure out how to load the DLL on Python 3.8+
- if: "!(runner.os == 'Windows' && (matrix.python == 3.8 || matrix.python == 3.9))"
+ if: "!(runner.os == 'Windows' && (matrix.python == 3.8 || matrix.python == 3.9 || matrix.python == '3.10' || matrix.python == '3.11-dev' || matrix.python == 'pypy-3.8'))"
run: cmake --build build2 --target cpptest
- - name: Interface test
- run: cmake --build build2 --target test_cmake_build
+ # Third build - C++17 mode with unstable ABI
+ - name: Configure (unstable ABI)
+ run: >
+ cmake -S . -B build3
+ -DPYBIND11_WERROR=ON
+ -DDOWNLOAD_CATCH=ON
+ -DDOWNLOAD_EIGEN=ON
+ -DCMAKE_CXX_STANDARD=17
+ -DPYBIND11_INTERNALS_VERSION=10000000
+ "-DPYBIND11_TEST_OVERRIDE=test_call_policies.cpp;test_gil_scoped.cpp;test_thread.cpp"
+ ${{ matrix.args }}
- # Eventually Microsoft might have an action for setting up
- # MSVC, but for now, this action works:
- - name: Prepare compiler environment for Windows 🐍 2.7
- if: matrix.python == 2.7 && runner.os == 'Windows'
- uses: ilammy/msvc-dev-cmd@v1
- with:
- arch: x64
+ - name: Build (unstable ABI)
+ run: cmake --build build3 -j 2
- # This makes two environment variables available in the following step(s)
- - name: Set Windows 🐍 2.7 environment variables
- if: matrix.python == 2.7 && runner.os == 'Windows'
- shell: bash
- run: |
- echo "DISTUTILS_USE_SDK=1" >> $GITHUB_ENV
- echo "MSSdk=1" >> $GITHUB_ENV
+ - name: Python tests (unstable ABI)
+ run: cmake --build build3 --target pytest
+
+ - name: Interface test
+ run: cmake --build build2 --target test_cmake_build
# This makes sure the setup_helpers module can build packages using
# setuptools
- name: Setuptools helpers test
run: pytest tests/extra_setuptools
+ if: "!(matrix.runs-on == 'windows-2022')"
+
+
+ deadsnakes:
+ strategy:
+ fail-fast: false
+ matrix:
+ include:
+ # TODO: Fails on 3.10, investigate
+ - python-version: "3.9"
+ python-debug: true
+ valgrind: true
+ - python-version: "3.11-dev"
+ python-debug: false
+
+ name: "🐍 ${{ matrix.python-version }}${{ matrix.python-debug && '-dbg' || '' }} (deadsnakes)${{ matrix.valgrind && ' • Valgrind' || '' }} • x64"
+ runs-on: ubuntu-latest
+
+ steps:
+ - uses: actions/checkout@v3
+
+ - name: Setup Python ${{ matrix.python-version }} (deadsnakes)
+ uses: deadsnakes/action@v2.1.1
+ with:
+ python-version: ${{ matrix.python-version }}
+ debug: ${{ matrix.python-debug }}
+
+ - name: Update CMake
+ uses: jwlawson/actions-setup-cmake@v1.12
+
+ - name: Valgrind cache
+ if: matrix.valgrind
+ uses: actions/cache@v3
+ id: cache-valgrind
+ with:
+ path: valgrind
+ key: 3.16.1 # Valgrind version
+
+ - name: Compile Valgrind
+ if: matrix.valgrind && steps.cache-valgrind.outputs.cache-hit != 'true'
+ run: |
+ VALGRIND_VERSION=3.16.1
+ curl https://sourceware.org/pub/valgrind/valgrind-$VALGRIND_VERSION.tar.bz2 -o - | tar xj
+ mv valgrind-$VALGRIND_VERSION valgrind
+ cd valgrind
+ ./configure
+ make -j 2 > /dev/null
+
+ - name: Install Valgrind
+ if: matrix.valgrind
+ working-directory: valgrind
+ run: |
+ sudo make install
+ sudo apt-get update
+ sudo apt-get install libc6-dbg # Needed by Valgrind
+
+ - name: Prepare env
+ run: |
+ python -m pip install -r tests/requirements.txt
+
+ - name: Configure
+ env:
+ SETUPTOOLS_USE_DISTUTILS: stdlib
+ run: >
+ cmake -S . -B build
+ -DCMAKE_BUILD_TYPE=Debug
+ -DPYBIND11_WERROR=ON
+ -DDOWNLOAD_CATCH=ON
+ -DDOWNLOAD_EIGEN=ON
+ -DCMAKE_CXX_STANDARD=17
+
+ - name: Build
+ run: cmake --build build -j 2
+
+ - name: Python tests
+ run: cmake --build build --target pytest
+
+ - name: C++ tests
+ run: cmake --build build --target cpptest
+
+ - name: Run Valgrind on Python tests
+ if: matrix.valgrind
+ run: cmake --build build --target memcheck
# Testing on clang using the excellent silkeh clang docker images
@@ -195,12 +281,20 @@ jobs:
std: 20
- clang: 10
std: 17
+ - clang: 11
+ std: 20
+ - clang: 12
+ std: 20
+ - clang: 13
+ std: 20
+ - clang: 14
+ std: 20
name: "🐍 3 • Clang ${{ matrix.clang }} • C++${{ matrix.std }} • x64"
container: "silkeh/clang:${{ matrix.clang }}"
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- name: Add wget and python3
run: apt-get update && apt-get install -y python3-dev python3-numpy python3-pytest libeigen3-dev
@@ -230,11 +324,11 @@ jobs:
# Testing NVCC; forces sources to behave like .cu files
cuda:
runs-on: ubuntu-latest
- name: "🐍 3.8 • CUDA 11 • Ubuntu 20.04"
- container: nvidia/cuda:11.0-devel-ubuntu20.04
+ name: "🐍 3.8 • CUDA 11.2 • Ubuntu 20.04"
+ container: nvidia/cuda:11.2.2-devel-ubuntu20.04
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
# tzdata will try to ask for the timezone, so set the DEBIAN_FRONTEND
- name: Install 🐍 3
@@ -250,70 +344,74 @@ jobs:
run: cmake --build build --target pytest
- # Testing CentOS 8 + PGI compilers
- centos-nvhpc8:
- runs-on: ubuntu-latest
- name: "🐍 3 • CentOS8 / PGI 20.7 • x64"
- container: centos:8
-
- steps:
- - uses: actions/checkout@v2
-
- - name: Add Python 3 and a few requirements
- run: yum update -y && yum install -y git python3-devel python3-numpy python3-pytest make environment-modules
-
- - name: Install CMake with pip
- run: |
- python3 -m pip install --upgrade pip
- python3 -m pip install cmake --prefer-binary
-
- - name: Install NVidia HPC SDK
- run: yum -y install https://developer.download.nvidia.com/hpc-sdk/nvhpc-20-7-20.7-1.x86_64.rpm https://developer.download.nvidia.com/hpc-sdk/nvhpc-2020-20.7-1.x86_64.rpm
-
- - name: Configure
- shell: bash
- run: |
- source /etc/profile.d/modules.sh
- module load /opt/nvidia/hpc_sdk/modulefiles/nvhpc/20.7
- cmake -S . -B build -DDOWNLOAD_CATCH=ON -DCMAKE_CXX_STANDARD=14 -DPYTHON_EXECUTABLE=$(python3 -c "import sys; print(sys.executable)")
-
- - name: Build
- run: cmake --build build -j 2 --verbose
-
- - name: Python tests
- run: cmake --build build --target pytest
-
- - name: C++ tests
- run: cmake --build build --target cpptest
-
- - name: Interface test
- run: cmake --build build --target test_cmake_build
+# TODO: Internal compiler error - report to NVidia
+# # Testing CentOS 8 + PGI compilers
+# centos-nvhpc8:
+# runs-on: ubuntu-latest
+# name: "🐍 3 • CentOS8 / PGI 20.11 • x64"
+# container: centos:8
+#
+# steps:
+# - uses: actions/checkout@v3
+#
+# - name: Add Python 3 and a few requirements
+# run: yum update -y && yum install -y git python3-devel python3-numpy python3-pytest make environment-modules
+#
+# - name: Install CMake with pip
+# run: |
+# python3 -m pip install --upgrade pip
+# python3 -m pip install cmake --prefer-binary
+#
+# - name: Install NVidia HPC SDK
+# run: >
+# yum -y install
+# https://developer.download.nvidia.com/hpc-sdk/20.11/nvhpc-20-11-20.11-1.x86_64.rpm
+# https://developer.download.nvidia.com/hpc-sdk/20.11/nvhpc-2020-20.11-1.x86_64.rpm
+#
+# - name: Configure
+# shell: bash
+# run: |
+# source /etc/profile.d/modules.sh
+# module load /opt/nvidia/hpc_sdk/modulefiles/nvhpc/20.11
+# cmake -S . -B build -DDOWNLOAD_CATCH=ON -DCMAKE_CXX_STANDARD=14 -DPYTHON_EXECUTABLE=$(python3 -c "import sys; print(sys.executable)")
+#
+# - name: Build
+# run: cmake --build build -j 2 --verbose
+#
+# - name: Python tests
+# run: cmake --build build --target pytest
+#
+# - name: C++ tests
+# run: cmake --build build --target cpptest
+#
+# - name: Interface test
+# run: cmake --build build --target test_cmake_build
# Testing on CentOS 7 + PGI compilers, which seems to require more workarounds
centos-nvhpc7:
runs-on: ubuntu-latest
- name: "🐍 3 • CentOS7 / PGI 20.9 • x64"
+ name: "🐍 3 • CentOS7 / PGI 22.3 • x64"
container: centos:7
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- name: Add Python 3 and a few requirements
- run: yum update -y && yum install -y epel-release && yum install -y git python3-devel make environment-modules cmake3
+ run: yum update -y && yum install -y epel-release && yum install -y git python3-devel make environment-modules cmake3 yum-utils
- name: Install NVidia HPC SDK
- run: yum -y install https://developer.download.nvidia.com/hpc-sdk/20.9/nvhpc-20-9-20.9-1.x86_64.rpm https://developer.download.nvidia.com/hpc-sdk/20.9/nvhpc-2020-20.9-1.x86_64.rpm
+ run: yum-config-manager --add-repo https://developer.download.nvidia.com/hpc-sdk/rhel/nvhpc.repo && yum -y install nvhpc-22.3
# On CentOS 7, we have to filter a few tests (compiler internal error)
- # and allow deeper templete recursion (not needed on CentOS 8 with a newer
+ # and allow deeper template recursion (not needed on CentOS 8 with a newer
# standard library). On some systems, you many need further workarounds:
# https://github.com/pybind/pybind11/pull/2475
- name: Configure
shell: bash
run: |
source /etc/profile.d/modules.sh
- module load /opt/nvidia/hpc_sdk/modulefiles/nvhpc/20.9
+ module load /opt/nvidia/hpc_sdk/modulefiles/nvhpc/22.3
cmake3 -S . -B build -DDOWNLOAD_CATCH=ON \
-DCMAKE_CXX_STANDARD=11 \
-DPYTHON_EXECUTABLE=$(python3 -c "import sys; print(sys.executable)") \
@@ -338,26 +436,27 @@ jobs:
- name: Interface test
run: cmake3 --build build --target test_cmake_build
+
# Testing on GCC using the GCC docker images (only recent images supported)
gcc:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
- gcc:
- - 7
- - latest
- std:
- - 11
include:
- - gcc: 10
- std: 20
+ - { gcc: 7, std: 11 }
+ - { gcc: 7, std: 17 }
+ - { gcc: 8, std: 14 }
+ - { gcc: 8, std: 17 }
+ - { gcc: 10, std: 17 }
+ - { gcc: 11, std: 20 }
+ - { gcc: 12, std: 20 }
name: "🐍 3 • GCC ${{ matrix.gcc }} • C++${{ matrix.std }}• x64"
container: "gcc:${{ matrix.gcc }}"
steps:
- - uses: actions/checkout@v1
+ - uses: actions/checkout@v3
- name: Add Python 3
run: apt-get update; apt-get install -y python3-dev python3-numpy python3-pytest python3-pip libeigen3-dev
@@ -365,10 +464,8 @@ jobs:
- name: Update pip
run: python3 -m pip install --upgrade pip
- - name: Setup CMake 3.18
- uses: jwlawson/actions-setup-cmake@v1.4
- with:
- cmake-version: 3.18
+ - name: Update CMake
+ uses: jwlawson/actions-setup-cmake@v1.12
- name: Configure
shell: bash
@@ -392,6 +489,103 @@ jobs:
run: cmake --build build --target test_cmake_build
+ # Testing on ICC using the oneAPI apt repo
+ icc:
+ runs-on: ubuntu-20.04
+ strategy:
+ fail-fast: false
+
+ name: "🐍 3 • ICC latest • x64"
+
+ steps:
+ - uses: actions/checkout@v3
+
+ - name: Add apt repo
+ run: |
+ sudo apt-get update
+ sudo apt-get install -y wget build-essential pkg-config cmake ca-certificates gnupg
+ wget https://apt.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS-2023.PUB
+ sudo apt-key add GPG-PUB-KEY-INTEL-SW-PRODUCTS-2023.PUB
+ echo "deb https://apt.repos.intel.com/oneapi all main" | sudo tee /etc/apt/sources.list.d/oneAPI.list
+
+ - name: Add ICC & Python 3
+ run: sudo apt-get update; sudo apt-get install -y intel-oneapi-compiler-dpcpp-cpp-and-cpp-classic cmake python3-dev python3-numpy python3-pytest python3-pip
+
+ - name: Update pip
+ run: |
+ set +e; source /opt/intel/oneapi/setvars.sh; set -e
+ python3 -m pip install --upgrade pip
+
+ - name: Install dependencies
+ run: |
+ set +e; source /opt/intel/oneapi/setvars.sh; set -e
+ python3 -m pip install -r tests/requirements.txt
+
+ - name: Configure C++11
+ run: |
+ set +e; source /opt/intel/oneapi/setvars.sh; set -e
+ cmake -S . -B build-11 \
+ -DPYBIND11_WERROR=ON \
+ -DDOWNLOAD_CATCH=ON \
+ -DDOWNLOAD_EIGEN=OFF \
+ -DCMAKE_CXX_STANDARD=11 \
+ -DCMAKE_CXX_COMPILER=$(which icpc) \
+ -DPYTHON_EXECUTABLE=$(python3 -c "import sys; print(sys.executable)")
+
+ - name: Build C++11
+ run: |
+ set +e; source /opt/intel/oneapi/setvars.sh; set -e
+ cmake --build build-11 -j 2 -v
+
+ - name: Python tests C++11
+ run: |
+ set +e; source /opt/intel/oneapi/setvars.sh; set -e
+ sudo service apport stop
+ cmake --build build-11 --target check
+
+ - name: C++ tests C++11
+ run: |
+ set +e; source /opt/intel/oneapi/setvars.sh; set -e
+ cmake --build build-11 --target cpptest
+
+ - name: Interface test C++11
+ run: |
+ set +e; source /opt/intel/oneapi/setvars.sh; set -e
+ cmake --build build-11 --target test_cmake_build
+
+ - name: Configure C++17
+ run: |
+ set +e; source /opt/intel/oneapi/setvars.sh; set -e
+ cmake -S . -B build-17 \
+ -DPYBIND11_WERROR=ON \
+ -DDOWNLOAD_CATCH=ON \
+ -DDOWNLOAD_EIGEN=OFF \
+ -DCMAKE_CXX_STANDARD=17 \
+ -DCMAKE_CXX_COMPILER=$(which icpc) \
+ -DPYTHON_EXECUTABLE=$(python3 -c "import sys; print(sys.executable)")
+
+ - name: Build C++17
+ run: |
+ set +e; source /opt/intel/oneapi/setvars.sh; set -e
+ cmake --build build-17 -j 2 -v
+
+ - name: Python tests C++17
+ run: |
+ set +e; source /opt/intel/oneapi/setvars.sh; set -e
+ sudo service apport stop
+ cmake --build build-17 --target check
+
+ - name: C++ tests C++17
+ run: |
+ set +e; source /opt/intel/oneapi/setvars.sh; set -e
+ cmake --build build-17 --target cpptest
+
+ - name: Interface test C++17
+ run: |
+ set +e; source /opt/intel/oneapi/setvars.sh; set -e
+ cmake --build build-17 --target test_cmake_build
+
+
# Testing on CentOS (manylinux uses a centos base, and this is an easy way
# to get GCC 4.8, which is the manylinux1 compiler).
centos:
@@ -399,29 +593,37 @@ jobs:
strategy:
fail-fast: false
matrix:
- centos:
- - 7 # GCC 4.8
- - 8
+ container:
+ - "centos:7" # GCC 4.8
+ - "almalinux:8"
+ - "almalinux:9"
- name: "🐍 3 • CentOS ${{ matrix.centos }} • x64"
- container: "centos:${{ matrix.centos }}"
+ name: "🐍 3 • ${{ matrix.container }} • x64"
+ container: "${{ matrix.container }}"
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- - name: Add Python 3
+ - name: Add Python 3 (RHEL 7)
+ if: matrix.container == 'centos:7'
run: yum update -y && yum install -y python3-devel gcc-c++ make git
+ - name: Add Python 3 (RHEL 8+)
+ if: matrix.container != 'centos:7'
+ run: dnf update -y && dnf install -y python3-devel gcc-c++ make git
+
- name: Update pip
run: python3 -m pip install --upgrade pip
- name: Install dependencies
- run: python3 -m pip install cmake -r tests/requirements.txt --prefer-binary
+ run: |
+ python3 -m pip install cmake -r tests/requirements.txt
- name: Configure
shell: bash
run: >
cmake -S . -B build
+ -DCMAKE_BUILD_TYPE=MinSizeRel
-DPYBIND11_WERROR=ON
-DDOWNLOAD_CATCH=ON
-DDOWNLOAD_EIGEN=ON
@@ -443,18 +645,18 @@ jobs:
# This tests an "install" with the CMake tools
install-classic:
- name: "🐍 3.5 • Debian • x86 • Install"
+ name: "🐍 3.7 • Debian • x86 • Install"
runs-on: ubuntu-latest
- container: i386/debian:stretch
+ container: i386/debian:buster
steps:
- - uses: actions/checkout@v1
+ - uses: actions/checkout@v1 # Required to run inside docker
- name: Install requirements
run: |
apt-get update
apt-get install -y git make cmake g++ libeigen3-dev python3-dev python3-pip
- pip3 install "pytest==3.1.*"
+ pip3 install "pytest==6.*"
- name: Configure for install
run: >
@@ -479,33 +681,32 @@ jobs:
-DPYTHON_EXECUTABLE=$(python3 -c "import sys; print(sys.executable)")
working-directory: /build-tests
- - name: Run tests
+ - name: Python tests
run: make pytest -j 2
working-directory: /build-tests
# This verifies that the documentation is not horribly broken, and does a
- # basic sanity check on the SDist.
+ # basic validation check on the SDist.
doxygen:
name: "Documentation build test"
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- - uses: actions/setup-python@v2
+ - uses: actions/setup-python@v4
+ with:
+ python-version: "3.x"
- name: Install Doxygen
run: sudo apt-get install -y doxygen librsvg2-bin # Changed to rsvg-convert in 20.04
- - name: Install docs & setup requirements
- run: python3 -m pip install -r docs/requirements.txt
-
- name: Build docs
- run: python3 -m sphinx -W -b html docs docs/.build
+ run: pipx run nox -s docs
- name: Make SDist
- run: python3 setup.py sdist
+ run: pipx run nox -s build -- --sdist
- run: git status --ignored
@@ -517,7 +718,7 @@ jobs:
- name: Compare Dists (headers only)
working-directory: include
run: |
- python3 -m pip install --user -U ../dist/*
+ python3 -m pip install --user -U ../dist/*.tar.gz
installed=$(python3 -c "import pybind11; print(pybind11.get_include() + '/pybind11')")
diff -rq $installed ./pybind11
@@ -526,42 +727,40 @@ jobs:
fail-fast: false
matrix:
python:
- - 3.5
- 3.6
- 3.7
- 3.8
- 3.9
- - pypy3
- # TODO: fix hang on pypy2
include:
- python: 3.9
- args: -DCMAKE_CXX_STANDARD=20 -DDOWNLOAD_EIGEN=OFF
+ args: -DCMAKE_CXX_STANDARD=20
- python: 3.8
args: -DCMAKE_CXX_STANDARD=17
name: "🐍 ${{ matrix.python }} • MSVC 2019 • x86 ${{ matrix.args }}"
- runs-on: windows-latest
+ runs-on: windows-2019
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- name: Setup Python ${{ matrix.python }}
- uses: actions/setup-python@v2
+ uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
architecture: x86
- name: Update CMake
- uses: jwlawson/actions-setup-cmake@v1.4
+ uses: jwlawson/actions-setup-cmake@v1.12
- name: Prepare MSVC
- uses: ilammy/msvc-dev-cmd@v1
+ uses: ilammy/msvc-dev-cmd@v1.11.0
with:
arch: x86
- name: Prepare env
- run: python -m pip install -r tests/requirements.txt --prefer-binary
+ run: |
+ python -m pip install -r tests/requirements.txt
# First build - C++11 mode and inplace
- name: Configure ${{ matrix.args }}
@@ -575,102 +774,189 @@ jobs:
- name: Build C++11
run: cmake --build build -j 2
- - name: Run tests
+ - name: Python tests
run: cmake --build build -t pytest
- win32-msvc2015:
- name: "🐍 ${{ matrix.python }} • MSVC 2015 • x64"
- runs-on: windows-latest
+ win32-debug:
strategy:
fail-fast: false
matrix:
python:
- - 2.7
- - 3.6
- - 3.7
- # todo: check/cpptest does not support 3.8+ yet
+ - 3.8
+ - 3.9
+
+ include:
+ - python: 3.9
+ args: -DCMAKE_CXX_STANDARD=20
+ - python: 3.8
+ args: -DCMAKE_CXX_STANDARD=17
+
+ name: "🐍 ${{ matrix.python }} • MSVC 2019 (Debug) • x86 ${{ matrix.args }}"
+ runs-on: windows-2019
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- - name: Setup 🐍 ${{ matrix.python }}
- uses: actions/setup-python@v2
+ - name: Setup Python ${{ matrix.python }}
+ uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
+ architecture: x86
- name: Update CMake
- uses: jwlawson/actions-setup-cmake@v1.4
+ uses: jwlawson/actions-setup-cmake@v1.12
- name: Prepare MSVC
- uses: ilammy/msvc-dev-cmd@v1
+ uses: ilammy/msvc-dev-cmd@v1.11.0
with:
- toolset: 14.0
+ arch: x86
- name: Prepare env
- run: python -m pip install -r tests/requirements.txt --prefer-binary
+ run: |
+ python -m pip install -r tests/requirements.txt
# First build - C++11 mode and inplace
- - name: Configure
+ - name: Configure ${{ matrix.args }}
run: >
cmake -S . -B build
- -G "Visual Studio 14 2015" -A x64
+ -G "Visual Studio 16 2019" -A Win32
+ -DCMAKE_BUILD_TYPE=Debug
-DPYBIND11_WERROR=ON
-DDOWNLOAD_CATCH=ON
-DDOWNLOAD_EIGEN=ON
+ ${{ matrix.args }}
+ - name: Build C++11
+ run: cmake --build build --config Debug -j 2
- - name: Build C++14
- run: cmake --build build -j 2
-
- - name: Run all checks
- run: cmake --build build -t check
+ - name: Python tests
+ run: cmake --build build --config Debug -t pytest
- win32-msvc2017:
- name: "🐍 ${{ matrix.python }} • MSVC 2017 • x64"
- runs-on: windows-2016
+ windows-2022:
strategy:
fail-fast: false
matrix:
python:
- - 2.7
- - 3.5
- - 3.7
- std:
- - 14
+ - 3.9
- include:
- - python: 2.7
- std: 17
- args: >
- -DCMAKE_CXX_FLAGS="/permissive- /EHsc /GR"
+ name: "🐍 ${{ matrix.python }} • MSVC 2022 C++20 • x64"
+ runs-on: windows-2022
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- - name: Setup 🐍 ${{ matrix.python }}
- uses: actions/setup-python@v2
+ - name: Setup Python ${{ matrix.python }}
+ uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- - name: Update CMake
- uses: jwlawson/actions-setup-cmake@v1.4
-
- name: Prepare env
- run: python -m pip install -r tests/requirements.txt --prefer-binary
+ run: |
+ python3 -m pip install -r tests/requirements.txt
- # First build - C++11 mode and inplace
- - name: Configure
+ - name: Update CMake
+ uses: jwlawson/actions-setup-cmake@v1.12
+
+ - name: Configure C++20
run: >
cmake -S . -B build
- -G "Visual Studio 15 2017" -A x64
-DPYBIND11_WERROR=ON
-DDOWNLOAD_CATCH=ON
-DDOWNLOAD_EIGEN=ON
- -DCMAKE_CXX_STANDARD=${{ matrix.std }}
- ${{ matrix.args }}
+ -DCMAKE_CXX_STANDARD=20
- - name: Build ${{ matrix.std }}
+ - name: Build C++20
run: cmake --build build -j 2
- - name: Run all checks
- run: cmake --build build -t check
+ - name: Python tests
+ run: cmake --build build --target pytest
+
+ - name: C++20 tests
+ run: cmake --build build --target cpptest -j 2
+
+ - name: Interface test C++20
+ run: cmake --build build --target test_cmake_build
+
+ mingw:
+ name: "🐍 3 • windows-latest • ${{ matrix.sys }}"
+ runs-on: windows-latest
+ defaults:
+ run:
+ shell: msys2 {0}
+ strategy:
+ fail-fast: false
+ matrix:
+ include:
+ - { sys: mingw64, env: x86_64 }
+ - { sys: mingw32, env: i686 }
+ steps:
+ - uses: msys2/setup-msys2@v2
+ with:
+ msystem: ${{matrix.sys}}
+ install: >-
+ git
+ mingw-w64-${{matrix.env}}-gcc
+ mingw-w64-${{matrix.env}}-python-pip
+ mingw-w64-${{matrix.env}}-python-numpy
+ mingw-w64-${{matrix.env}}-python-scipy
+ mingw-w64-${{matrix.env}}-cmake
+ mingw-w64-${{matrix.env}}-make
+ mingw-w64-${{matrix.env}}-python-pytest
+ mingw-w64-${{matrix.env}}-eigen3
+ mingw-w64-${{matrix.env}}-boost
+ mingw-w64-${{matrix.env}}-catch
+
+ - uses: actions/checkout@v3
+
+ - name: Configure C++11
+ # LTO leads to many undefined reference like
+ # `pybind11::detail::function_call::function_call(pybind11::detail::function_call&&)
+ run: cmake -G "MinGW Makefiles" -DCMAKE_CXX_STANDARD=11 -DCMAKE_VERBOSE_MAKEFILE=ON -DPYBIND11_WERROR=ON -DDOWNLOAD_CATCH=ON -S . -B build
+
+ - name: Build C++11
+ run: cmake --build build -j 2
+
+ - name: Python tests C++11
+ run: cmake --build build --target pytest -j 2
+
+ - name: C++11 tests
+ run: PYTHONHOME=/${{matrix.sys}} PYTHONPATH=/${{matrix.sys}} cmake --build build --target cpptest -j 2
+
+ - name: Interface test C++11
+ run: PYTHONHOME=/${{matrix.sys}} PYTHONPATH=/${{matrix.sys}} cmake --build build --target test_cmake_build
+
+ - name: Clean directory
+ run: git clean -fdx
+
+ - name: Configure C++14
+ run: cmake -G "MinGW Makefiles" -DCMAKE_CXX_STANDARD=14 -DCMAKE_VERBOSE_MAKEFILE=ON -DPYBIND11_WERROR=ON -DDOWNLOAD_CATCH=ON -S . -B build2
+
+ - name: Build C++14
+ run: cmake --build build2 -j 2
+
+ - name: Python tests C++14
+ run: cmake --build build2 --target pytest -j 2
+
+ - name: C++14 tests
+ run: PYTHONHOME=/${{matrix.sys}} PYTHONPATH=/${{matrix.sys}} cmake --build build2 --target cpptest -j 2
+
+ - name: Interface test C++14
+ run: PYTHONHOME=/${{matrix.sys}} PYTHONPATH=/${{matrix.sys}} cmake --build build2 --target test_cmake_build
+
+ - name: Clean directory
+ run: git clean -fdx
+
+ - name: Configure C++17
+ run: cmake -G "MinGW Makefiles" -DCMAKE_CXX_STANDARD=17 -DCMAKE_VERBOSE_MAKEFILE=ON -DPYBIND11_WERROR=ON -DDOWNLOAD_CATCH=ON -S . -B build3
+
+ - name: Build C++17
+ run: cmake --build build3 -j 2
+
+ - name: Python tests C++17
+ run: cmake --build build3 --target pytest -j 2
+
+ - name: C++17 tests
+ run: PYTHONHOME=/${{matrix.sys}} PYTHONPATH=/${{matrix.sys}} cmake --build build3 --target cpptest -j 2
+
+ - name: Interface test C++17
+ run: PYTHONHOME=/${{matrix.sys}} PYTHONPATH=/${{matrix.sys}} cmake --build build3 --target test_cmake_build