mirror of
https://github.com/pybind/pybind11.git
synced 2024-11-11 08:03:55 +00:00
Adding MSVC 2022 C++20 GitHub Action (#3732)
* Trying another way of adding windows-2022 C++20
* ci: try merging 2019 & 2022
* Revert "ci: try merging 2019 & 2022"
This reverts commit b158a1b79f
.
Co-authored-by: Henry Schreiner <henryschreineriii@gmail.com>
This commit is contained in:
parent
522c59ceb2
commit
44156477a3
45
.github/workflows/ci.yml
vendored
45
.github/workflows/ci.yml
vendored
@ -852,6 +852,51 @@ jobs:
|
|||||||
- name: Run all checks
|
- name: Run all checks
|
||||||
run: cmake --build build -t check
|
run: cmake --build build -t check
|
||||||
|
|
||||||
|
windows-2022:
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
python:
|
||||||
|
- 3.9
|
||||||
|
|
||||||
|
name: "🐍 ${{ matrix.python }} • MSVC 2022 C++20 • x64"
|
||||||
|
runs-on: windows-2022
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: Setup Python ${{ matrix.python }}
|
||||||
|
uses: actions/setup-python@v2
|
||||||
|
with:
|
||||||
|
python-version: ${{ matrix.python }}
|
||||||
|
|
||||||
|
- name: Prepare env
|
||||||
|
run: |
|
||||||
|
python3 -m pip install -r tests/requirements.txt
|
||||||
|
|
||||||
|
- name: Update CMake
|
||||||
|
uses: jwlawson/actions-setup-cmake@v1.12
|
||||||
|
|
||||||
|
- name: Configure C++20
|
||||||
|
run: >
|
||||||
|
cmake -S . -B build
|
||||||
|
-DPYBIND11_WERROR=ON
|
||||||
|
-DDOWNLOAD_CATCH=ON
|
||||||
|
-DDOWNLOAD_EIGEN=OFF
|
||||||
|
-DCMAKE_CXX_STANDARD=20
|
||||||
|
|
||||||
|
- name: Build C++20
|
||||||
|
run: cmake --build build -j 2
|
||||||
|
|
||||||
|
- name: Python tests
|
||||||
|
run: cmake --build build --target pytest
|
||||||
|
|
||||||
|
- name: C++20 tests
|
||||||
|
run: cmake --build build --target cpptest -j 2
|
||||||
|
|
||||||
|
- name: Interface test C++20
|
||||||
|
run: cmake --build build --target test_cmake_build
|
||||||
|
|
||||||
mingw:
|
mingw:
|
||||||
name: "🐍 3 • windows-latest • ${{ matrix.sys }}"
|
name: "🐍 3 • windows-latest • ${{ matrix.sys }}"
|
||||||
runs-on: windows-latest
|
runs-on: windows-latest
|
||||||
|
Loading…
Reference in New Issue
Block a user