pybind11/.github/workflows/configure.yml

94 lines
2.2 KiB
YAML
Raw Normal View History

2020-08-02 03:09:32 +00:00
name: Config
2020-07-29 00:13:09 +00:00
on:
workflow_dispatch:
pull_request:
push:
branches:
- master
- stable
- smart_holder
2020-07-29 00:13:09 +00:00
- v*
permissions:
contents: read
env:
PIP_BREAK_SYSTEM_PACKAGES: 1
# For cmake:
VERBOSE: 1
2020-07-29 00:13:09 +00:00
jobs:
# This tests various versions of CMake in various combinations, to make sure
# the configure step passes.
2020-07-29 00:13:09 +00:00
cmake:
strategy:
fail-fast: false
matrix:
runs-on: [ubuntu-20.04, macos-13, windows-latest]
2020-08-02 03:09:32 +00:00
arch: [x64]
cmake: ["3.26"]
2020-07-29 00:13:09 +00:00
2020-08-02 03:09:32 +00:00
include:
- runs-on: ubuntu-20.04
2020-08-02 03:09:32 +00:00
arch: x64
cmake: "3.5"
- runs-on: ubuntu-20.04
arch: x64
cmake: "3.29"
- runs-on: macos-13
arch: x64
cmake: "3.7"
2020-08-02 03:09:32 +00:00
- runs-on: windows-2019
arch: x64 # x86 compilers seem to be missing on 2019 image
cmake: "3.18"
2020-08-02 03:09:32 +00:00
name: 🐍 3.7 • CMake ${{ matrix.cmake }} • ${{ matrix.runs-on }}
runs-on: ${{ matrix.runs-on }}
2020-07-29 00:13:09 +00:00
steps:
- uses: actions/checkout@v4
2020-07-29 00:13:09 +00:00
2020-08-02 03:09:32 +00:00
- name: Setup Python 3.7
uses: actions/setup-python@v5
2020-07-29 00:13:09 +00:00
with:
2020-08-02 03:09:32 +00:00
python-version: 3.7
architecture: ${{ matrix.arch }}
2020-07-29 00:13:09 +00:00
- name: Prepare env
run: python -m pip install -r tests/requirements.txt
# An action for adding a specific version of CMake:
# https://github.com/jwlawson/actions-setup-cmake
2020-08-02 03:09:32 +00:00
- name: Setup CMake ${{ matrix.cmake }}
chore(deps): bump the actions group with 3 updates (#5024) Bumps the actions group with 3 updates: [jwlawson/actions-setup-cmake](https://github.com/jwlawson/actions-setup-cmake), [actions/cache](https://github.com/actions/cache) and [pre-commit/action](https://github.com/pre-commit/action). Updates `jwlawson/actions-setup-cmake` from 1.14 to 2.0 - [Release notes](https://github.com/jwlawson/actions-setup-cmake/releases) - [Commits](https://github.com/jwlawson/actions-setup-cmake/compare/v1.14...v2.0) Updates `actions/cache` from 3 to 4 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v3...v4) Updates `pre-commit/action` from 3.0.0 to 3.0.1 - [Release notes](https://github.com/pre-commit/action/releases) - [Commits](https://github.com/pre-commit/action/compare/v3.0.0...v3.0.1) --- updated-dependencies: - dependency-name: jwlawson/actions-setup-cmake dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: pre-commit/action dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-02-14 01:50:51 +00:00
uses: jwlawson/actions-setup-cmake@v2.0
2020-07-29 00:13:09 +00:00
with:
2020-08-02 03:09:32 +00:00
cmake-version: ${{ matrix.cmake }}
2020-07-29 00:13:09 +00:00
# These steps use a directory with a space in it intentionally
2020-08-02 03:09:32 +00:00
- name: Make build directories
run: mkdir "build dir"
2020-07-29 00:13:09 +00:00
2020-08-02 03:09:32 +00:00
- name: Configure
working-directory: build dir
shell: bash
2020-07-29 00:13:09 +00:00
run: >
cmake ..
-DPYBIND11_WERROR=ON
-DDOWNLOAD_CATCH=ON
-DPYTHON_EXECUTABLE=$(python -c "import sys; print(sys.executable)")
# 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