mirror of
https://github.com/pybind/pybind11.git
synced 2026-04-20 06:49:25 +00:00
* chore(deps): bump the actions group across 1 directory with 2 updates Bumps the actions group with 2 updates in the / directory: [actions/checkout](https://github.com/actions/checkout) and [actions/attest-build-provenance](https://github.com/actions/attest-build-provenance). Updates `actions/checkout` from 1 to 5 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v1...v5) Updates `actions/attest-build-provenance` from 2 to 3 - [Release notes](https://github.com/actions/attest-build-provenance/releases) - [Changelog](https://github.com/actions/attest-build-provenance/blob/main/RELEASE.md) - [Commits](https://github.com/actions/attest-build-provenance/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/attest-build-provenance dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com> * Update .github/workflows/ci.yml --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Henry Schreiner <HenrySchreinerIII@gmail.com>
86 lines
2.0 KiB
YAML
86 lines
2.0 KiB
YAML
name: Config
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
pull_request:
|
|
types:
|
|
- opened
|
|
- synchronize
|
|
- reopened
|
|
- ready_for_review
|
|
push:
|
|
branches:
|
|
- master
|
|
- stable
|
|
- v*
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
# This tests various versions of CMake in various combinations, to make sure
|
|
# the configure step passes.
|
|
cmake:
|
|
if: github.event.pull_request.draft == false
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
include:
|
|
- runs-on: ubuntu-22.04
|
|
cmake: "3.15"
|
|
|
|
- runs-on: ubuntu-24.04
|
|
cmake: "3.26"
|
|
|
|
- runs-on: ubuntu-24.04
|
|
cmake: "3.29"
|
|
|
|
- runs-on: macos-13
|
|
cmake: "3.15"
|
|
|
|
- runs-on: macos-14
|
|
cmake: "4.0"
|
|
|
|
- runs-on: windows-latest
|
|
cmake: "4.0"
|
|
|
|
name: 🐍 3.11 • CMake ${{ matrix.cmake }} • ${{ matrix.runs-on }}
|
|
runs-on: ${{ matrix.runs-on }}
|
|
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
|
|
- name: Setup Python 3.11
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: 3.11
|
|
|
|
- name: Install uv
|
|
uses: astral-sh/setup-uv@v6
|
|
|
|
- name: Prepare env
|
|
run: uv pip install --python=python --system -r tests/requirements.txt
|
|
|
|
# An action for adding a specific version of CMake:
|
|
# https://github.com/jwlawson/actions-setup-cmake
|
|
- name: Setup CMake ${{ matrix.cmake }}
|
|
uses: jwlawson/actions-setup-cmake@v2.0
|
|
with:
|
|
cmake-version: ${{ matrix.cmake }}
|
|
|
|
# These steps use a directory with a space in it intentionally
|
|
- name: Configure
|
|
shell: bash
|
|
run: cmake -S. -B"build dir" -DPYBIND11_WERROR=ON -DDOWNLOAD_CATCH=ON
|
|
|
|
# Only build and test if this was manually triggered in the GitHub UI
|
|
- name: Build
|
|
working-directory: build dir
|
|
if: github.event_name == 'workflow_dispatch'
|
|
run: cmake --build . --config Release
|
|
|
|
- name: Test
|
|
working-directory: build dir
|
|
if: github.event_name == 'workflow_dispatch'
|
|
run: cmake --build . --config Release --target check
|