2021-11-17 14:44:19 +00:00
|
|
|
|
|
|
|
name: Upstream
|
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
pull_request:
|
|
|
|
|
|
|
|
concurrency:
|
|
|
|
group: upstream-${{ github.ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
|
|
|
env:
|
2023-03-30 14:29:25 +00:00
|
|
|
PIP_ONLY_BINARY: ":all:"
|
2022-12-15 21:19:13 +00:00
|
|
|
# For cmake:
|
|
|
|
VERBOSE: 1
|
2021-11-17 14:44:19 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
standard:
|
2023-03-30 14:29:25 +00:00
|
|
|
name: "🐍 3.12 latest • ubuntu-latest • x64"
|
2021-11-17 14:44:19 +00:00
|
|
|
runs-on: ubuntu-latest
|
2023-03-30 14:29:25 +00:00
|
|
|
# Only runs when the 'python dev' label is selected
|
2021-11-17 14:44:19 +00:00
|
|
|
if: "contains(github.event.pull_request.labels.*.name, 'python dev')"
|
|
|
|
|
|
|
|
steps:
|
2022-04-24 20:49:13 +00:00
|
|
|
- uses: actions/checkout@v3
|
2021-11-17 14:44:19 +00:00
|
|
|
|
2023-03-30 14:29:25 +00:00
|
|
|
- name: Setup Python 3.12
|
2022-07-04 14:24:55 +00:00
|
|
|
uses: actions/setup-python@v4
|
2021-11-17 14:44:19 +00:00
|
|
|
with:
|
2023-03-30 14:29:25 +00:00
|
|
|
python-version: "3.12-dev"
|
2021-11-17 14:44:19 +00:00
|
|
|
|
2023-03-30 14:29:25 +00:00
|
|
|
- name: Setup Boost
|
2021-11-17 14:44:19 +00:00
|
|
|
run: sudo apt-get install libboost-dev
|
|
|
|
|
|
|
|
- name: Update CMake
|
2022-10-11 04:50:40 +00:00
|
|
|
uses: jwlawson/actions-setup-cmake@v1.13
|
2021-11-17 14:44:19 +00:00
|
|
|
|
2023-03-30 14:29:25 +00:00
|
|
|
- name: Run pip installs
|
2021-11-17 14:44:19 +00:00
|
|
|
run: |
|
2023-03-30 14:29:25 +00:00
|
|
|
python -m pip install --upgrade pip
|
2021-11-17 14:44:19 +00:00
|
|
|
python -m pip install -r tests/requirements.txt
|
|
|
|
|
2023-03-30 14:29:25 +00:00
|
|
|
- name: Show platform info
|
|
|
|
run: |
|
|
|
|
python -m platform
|
|
|
|
cmake --version
|
|
|
|
pip list
|
2021-11-17 14:44:19 +00:00
|
|
|
|
|
|
|
# First build - C++11 mode and inplace
|
|
|
|
- name: Configure C++11
|
|
|
|
run: >
|
2023-03-30 14:29:25 +00:00
|
|
|
cmake -S . -B build11
|
2021-11-17 14:44:19 +00:00
|
|
|
-DPYBIND11_WERROR=ON
|
|
|
|
-DDOWNLOAD_CATCH=ON
|
|
|
|
-DDOWNLOAD_EIGEN=ON
|
|
|
|
-DCMAKE_CXX_STANDARD=11
|
2023-03-30 14:29:25 +00:00
|
|
|
-DCMAKE_BUILD_TYPE=Debug
|
2021-11-17 14:44:19 +00:00
|
|
|
|
|
|
|
- name: Build C++11
|
2023-03-30 14:29:25 +00:00
|
|
|
run: cmake --build build11 -j 2
|
2021-11-17 14:44:19 +00:00
|
|
|
|
|
|
|
- name: Python tests C++11
|
2023-03-30 14:29:25 +00:00
|
|
|
run: cmake --build build11 --target pytest -j 2
|
2021-11-17 14:44:19 +00:00
|
|
|
|
2023-03-30 14:29:25 +00:00
|
|
|
# - name: C++11 tests
|
|
|
|
# run: cmake --build build11 --target cpptest -j 2
|
2021-11-17 14:44:19 +00:00
|
|
|
|
|
|
|
- name: Interface test C++11
|
2023-03-30 14:29:25 +00:00
|
|
|
run: cmake --build build11 --target test_cmake_build
|
2021-11-17 14:44:19 +00:00
|
|
|
|
|
|
|
# Second build - C++17 mode and in a build directory
|
|
|
|
- name: Configure C++17
|
|
|
|
run: >
|
2023-03-30 14:29:25 +00:00
|
|
|
cmake -S . -B build17
|
2021-11-17 14:44:19 +00:00
|
|
|
-DPYBIND11_WERROR=ON
|
|
|
|
-DDOWNLOAD_CATCH=ON
|
|
|
|
-DDOWNLOAD_EIGEN=ON
|
|
|
|
-DCMAKE_CXX_STANDARD=17
|
|
|
|
|
|
|
|
- name: Build
|
2023-03-30 14:29:25 +00:00
|
|
|
run: cmake --build build17 -j 2
|
2021-11-17 14:44:19 +00:00
|
|
|
|
|
|
|
- name: Python tests
|
2023-03-30 14:29:25 +00:00
|
|
|
run: cmake --build build17 --target pytest
|
2021-11-17 14:44:19 +00:00
|
|
|
|
2023-03-30 14:29:25 +00:00
|
|
|
# - name: C++ tests
|
|
|
|
# run: cmake --build build17 --target cpptest
|
2021-11-17 14:44:19 +00:00
|
|
|
|
|
|
|
# Third build - C++17 mode with unstable ABI
|
|
|
|
- name: Configure (unstable ABI)
|
|
|
|
run: >
|
2023-03-30 14:29:25 +00:00
|
|
|
cmake -S . -B build17max
|
2021-11-17 14:44:19 +00:00
|
|
|
-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"
|
|
|
|
|
|
|
|
- name: Build (unstable ABI)
|
2023-03-30 14:29:25 +00:00
|
|
|
run: cmake --build build17max -j 2
|
2021-11-17 14:44:19 +00:00
|
|
|
|
|
|
|
- name: Python tests (unstable ABI)
|
2023-03-30 14:29:25 +00:00
|
|
|
run: cmake --build build17max --target pytest
|
2021-11-17 14:44:19 +00:00
|
|
|
|
|
|
|
- name: Interface test
|
2023-03-30 14:29:25 +00:00
|
|
|
run: cmake --build build17max --target test_cmake_build
|
2021-11-17 14:44:19 +00:00
|
|
|
|
|
|
|
# This makes sure the setup_helpers module can build packages using
|
|
|
|
# setuptools
|
|
|
|
- name: Setuptools helpers test
|
|
|
|
run: pytest tests/extra_setuptools
|