-
Notifications
You must be signed in to change notification settings - Fork 16
97 lines (92 loc) · 2.36 KB
/
ci.yml
File metadata and controls
97 lines (92 loc) · 2.36 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
---
name: CI
on:
pull_request:
push:
branches:
- master
concurrency:
group: ${{ github.ref_name }}-${{ github.workflow }}
cancel-in-progress: true
jobs:
make:
name: "${{ matrix.os }} with make"
runs-on: "${{ matrix.os }}"
timeout-minutes: 15
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- windows-latest
- macos-latest
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Install Cygwin Action
uses: cygwin/cygwin-install-action@v6
if: runner.os == 'Windows'
with:
packages: gcc-core gcc-g++
- name: Get number of CPU cores
uses: SimenB/github-actions-cpu-cores@v2
id: cpu-cores
- name: Build
run: make -j${{ steps.cpu-cores.outputs.count }}
shell: bash
env:
CC: gcc
CXX: g++
- name: Set up Python for tests
uses: actions/setup-python@v6
with:
python-version: '3.14'
cache: 'pip'
- name: Install test dependencies
run: pip install -r requirements.txt
- name: Test
run: make test
cmake:
name: "${{ matrix.os }} with cmake"
runs-on: "${{ matrix.os }}"
timeout-minutes: 15
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macos-latest
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Get number of CPU cores
uses: SimenB/github-actions-cpu-cores@v2
id: cpu-cores
- name: Build
run: |
cmake -B build
cmake --build build -j${{ steps.cpu-cores.outputs.count }}
- name: Set up Python for tests
uses: actions/setup-python@v6
with:
python-version: '3.14'
cache: 'pip'
- name: Install test dependencies
run: pip install -r requirements.txt
- name: Test
run: ctest --test-dir build --verbose
# A dummy job that you can mark as a required check instead of each individual test
test-suite:
name: Test suite
runs-on: ubuntu-latest
needs:
- make
- cmake
if: always()
steps:
- name: Decide whether the needed jobs succeeded or failed
uses: re-actors/alls-green@release/v1
with:
jobs: ${{ toJSON(needs) }}