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
|
|
|
|
- v*
|
|
|
|
|
2023-05-15 17:02:25 +00:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2022-12-15 21:19:13 +00:00
|
|
|
env:
|
2023-06-17 14:02:23 +00:00
|
|
|
PIP_BREAK_SYSTEM_PACKAGES: 1
|
2022-12-15 21:19:13 +00:00
|
|
|
# For cmake:
|
|
|
|
VERBOSE: 1
|
|
|
|
|
2020-07-29 00:13:09 +00:00
|
|
|
jobs:
|
2020-09-16 21:13:41 +00:00
|
|
|
# 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:
|
2022-12-05 03:39:25 +00:00
|
|
|
runs-on: [ubuntu-20.04, macos-latest, windows-latest]
|
2020-08-02 03:09:32 +00:00
|
|
|
arch: [x64]
|
2023-07-12 18:10:24 +00:00
|
|
|
cmake: ["3.26"]
|
2020-07-29 00:13:09 +00:00
|
|
|
|
2020-08-02 03:09:32 +00:00
|
|
|
include:
|
2022-12-05 03:39:25 +00:00
|
|
|
- runs-on: ubuntu-20.04
|
2020-08-02 03:09:32 +00:00
|
|
|
arch: x64
|
2023-07-12 18:10:24 +00:00
|
|
|
cmake: "3.5"
|
|
|
|
|
|
|
|
- runs-on: ubuntu-20.04
|
|
|
|
arch: x64
|
|
|
|
cmake: "3.27"
|
2020-08-19 16:26:26 +00:00
|
|
|
|
|
|
|
- runs-on: macos-latest
|
|
|
|
arch: x64
|
2023-07-12 18:10:24 +00:00
|
|
|
cmake: "3.7"
|
2020-08-02 03:09:32 +00:00
|
|
|
|
2022-04-11 20:54:33 +00:00
|
|
|
- runs-on: windows-2019
|
|
|
|
arch: x64 # x86 compilers seem to be missing on 2019 image
|
2023-07-12 18:10:24 +00:00
|
|
|
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:
|
2023-09-06 19:57:18 +00:00
|
|
|
- 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
|
2022-07-04 14:24:55 +00:00
|
|
|
uses: actions/setup-python@v4
|
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
|
|
|
|
|
2020-09-16 21:13:41 +00:00
|
|
|
# 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 }}
|
2023-04-23 16:32:35 +00:00
|
|
|
uses: jwlawson/actions-setup-cmake@v1.14
|
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
|
|
|
|
2020-09-16 21:13:41 +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)")
|
2020-08-19 16:26:26 +00:00
|
|
|
|
2020-09-16 21:13:41 +00:00
|
|
|
# Only build and test if this was manually triggered in the GitHub UI
|
2020-08-19 16:26:26 +00:00
|
|
|
- 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
|