-
Notifications
You must be signed in to change notification settings - Fork 1
68 lines (54 loc) · 1.72 KB
/
test.yml
File metadata and controls
68 lines (54 loc) · 1.72 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
name: tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
# Run tests once a week on Sunday.
schedule:
- cron: "0 6 * * 0"
jobs:
run-tests:
strategy:
fail-fast: false
matrix:
sphinx: [ "6", "7", "8", "9" ]
cmake: [ "3.20", "4.1" ]
os: [ "ubuntu", "macos", "windows" ]
python: [ "3.10", "3.14" ]
exclude:
- sphinx: "9"
python: "3.10"
name: |
v${{ matrix.sphinx }}-${{ matrix.cmake }}
[${{ matrix.os }}-py${{ matrix.python }}]
runs-on: "${{ matrix.os }}-latest"
env:
BUNDLE_PYTHON_TESTS: ${{ matrix.bundled }}
steps:
- uses: actions/setup-python@v5
with:
python-version: "${{ matrix.python }}"
- uses: actions/checkout@v4
- name: Setup cmake
uses: jwlawson/actions-setup-cmake@v2.0
if: ${{matrix.os != 'windows' || matrix.cmake != '3.20'}}
with:
cmake-version: "${{ matrix.cmake }}.x"
- name: Setup cmake (Bump up CMake minimal version for Visual Studio 17 2022)
uses: jwlawson/actions-setup-cmake@v2.0
if: ${{matrix.os == 'windows' && matrix.cmake == '3.20'}}
with:
# Visual Studio 17 2022 requires at least CMake 3.21.
# https://cmake.org/cmake/help/latest/generator/Visual%20Studio%2017%202022.html
cmake-version: "3.21.x"
- name: Install sphinx + sphinx-cmake
run: pip install . sphinx==${{ matrix.sphinx }}.*
- name: Build Tests
run: |
cmake --version
cmake -S ./test -B ./build
cmake --build ./build --config Release
- name: Run Tests
working-directory: build
run: ctest -VV -C Release