mirror of
https://github.com/pybind/pybind11.git
synced 2026-07-17 17:18:16 +00:00
* chore(deps): bump the actions group with 3 updates Bumps the actions group with 3 updates: [actions/checkout](https://github.com/actions/checkout), [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv) and [pypa/cibuildwheel](https://github.com/pypa/cibuildwheel). Updates `actions/checkout` from 6 to 7 - [Release notes](https://github.com/actions/checkout/releases) - [Commits](https://github.com/actions/checkout/compare/v6...v7) Updates `astral-sh/setup-uv` from 8.1.0 to 8.2.0 - [Release notes](https://github.com/astral-sh/setup-uv/releases) - [Commits](https://github.com/astral-sh/setup-uv/compare/v8.1.0...v8.2.0) Updates `pypa/cibuildwheel` from 3.4 to 4.1 - [Release notes](https://github.com/pypa/cibuildwheel/releases) - [Changelog](https://github.com/pypa/cibuildwheel/blob/main/docs/changelog.md) - [Commits](https://github.com/pypa/cibuildwheel/compare/v3.4...v4.1) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: astral-sh/setup-uv dependency-version: 8.2.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: pypa/cibuildwheel dependency-version: '4.1' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com> * ci: restore checkout v1 for i386 job --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Ralf W. Grosse-Kunstleve <rgrossekunst@nvidia.com>
119 lines
2.9 KiB
YAML
119 lines
2.9 KiB
YAML
name: Upstream
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
pull_request:
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
concurrency:
|
|
group: upstream-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
env:
|
|
PIP_BREAK_SYSTEM_PACKAGES: 1
|
|
# For cmake:
|
|
VERBOSE: 1
|
|
|
|
jobs:
|
|
standard:
|
|
name: "🐍 3.13 latest • ubuntu-latest • x64"
|
|
runs-on: ubuntu-latest
|
|
# Only runs when the 'python dev' label is selected
|
|
if: "contains(github.event.pull_request.labels.*.name, 'python dev')"
|
|
|
|
steps:
|
|
- uses: actions/checkout@v7
|
|
|
|
- name: Setup Python 3.13
|
|
uses: actions/setup-python@v6
|
|
with:
|
|
python-version: "3.13"
|
|
allow-prereleases: true
|
|
|
|
- name: Setup Boost
|
|
run: sudo apt-get install libboost-dev
|
|
|
|
- name: Update CMake
|
|
uses: jwlawson/actions-setup-cmake@v2.2
|
|
|
|
- name: Run pip installs
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
python -m pip install -r tests/requirements.txt
|
|
|
|
- name: Show platform info
|
|
run: |
|
|
python -m platform
|
|
cmake --version
|
|
pip list
|
|
|
|
# First build - C++11 mode and inplace
|
|
- name: Configure C++11
|
|
run: >
|
|
cmake -S . -B build11
|
|
-DPYBIND11_WERROR=ON
|
|
-DDOWNLOAD_CATCH=ON
|
|
-DDOWNLOAD_EIGEN=ON
|
|
-DCMAKE_CXX_STANDARD=11
|
|
-DCMAKE_BUILD_TYPE=Debug
|
|
|
|
- name: Build C++11
|
|
run: cmake --build build11 -j 2
|
|
|
|
- name: Python tests C++11
|
|
run: cmake --build build11 --target pytest -j 2
|
|
|
|
- name: C++11 tests
|
|
timeout-minutes: 3
|
|
run: cmake --build build11 --target cpptest -j 2
|
|
|
|
- name: Interface test C++11
|
|
run: cmake --build build11 --target test_cmake_build
|
|
|
|
# Second build - C++17 mode and in a build directory
|
|
- name: Configure C++17
|
|
run: >
|
|
cmake -S . -B build17
|
|
-DPYBIND11_WERROR=ON
|
|
-DDOWNLOAD_CATCH=ON
|
|
-DDOWNLOAD_EIGEN=ON
|
|
-DCMAKE_CXX_STANDARD=17
|
|
|
|
- name: Build C++17
|
|
run: cmake --build build17 -j 2
|
|
|
|
- name: Python tests C++17
|
|
run: cmake --build build17 --target pytest
|
|
|
|
- name: C++17 tests
|
|
timeout-minutes: 3
|
|
run: cmake --build build17 --target cpptest
|
|
|
|
# Third build - C++17 mode with unstable ABI
|
|
- name: Configure (unstable ABI)
|
|
run: >
|
|
cmake -S . -B build17max
|
|
-DPYBIND11_WERROR=ON
|
|
-DDOWNLOAD_CATCH=ON
|
|
-DDOWNLOAD_EIGEN=ON
|
|
-DCMAKE_CXX_STANDARD=17
|
|
-DPYBIND11_INTERNALS_VERSION=10000000
|
|
|
|
- name: Build (unstable ABI)
|
|
run: cmake --build build17max -j 2
|
|
|
|
- name: Python tests (unstable ABI)
|
|
run: cmake --build build17max --target pytest
|
|
|
|
- name: Interface test (unstable ABI)
|
|
run: cmake --build build17max --target test_cmake_build
|
|
|
|
# This makes sure the setup_helpers module can build packages using
|
|
# setuptools
|
|
- name: Setuptools helpers test
|
|
run: |
|
|
pip install setuptools
|
|
pytest tests/extra_setuptools
|