-
Notifications
You must be signed in to change notification settings - Fork 2
149 lines (115 loc) Β· 3.85 KB
/
ci.yml
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
name: CI
on: [push, pull_request]
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Get latest CMake and ninja
uses: lukka/get-cmake@latest
- name: Install static analyzers
run: sudo apt-get install clang-tidy cppcheck -y -q
- name: Configure
shell: pwsh
run: cmake --preset=ci-lint
- name: Build
run: cmake --build build
- name: Check header formatting
uses: jidicula/clang-format-action@v4.11.0
with:
clang-format-version: '17'
check-path: 'include/perturb'
- name: Check source formatting
uses: jidicula/clang-format-action@v4.11.0
with:
clang-format-version: '17'
check-path: 'src'
- name: Check tests formatting
uses: jidicula/clang-format-action@v4.11.0
with:
clang-format-version: '17'
check-path: 'tests'
examples:
name: Examples
needs: [ lint ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Get latest CMake and ninja
uses: lukka/get-cmake@latest
- name: Configure local example
working-directory: examples/cmake-local
run: cmake -S . -B build
- name: Build local example
working-directory: examples/cmake-local
run: cmake --build build
- name: Run local example
working-directory: examples/cmake-local/build
run: ./VeryCoolProject
- if: github.ref == 'refs/heads/master'
&& github.event_name == 'push'
&& github.repository_owner == 'gunvirranu'
run: echo "RUN_FETCH_EXAMPLE=true" >> $GITHUB_ENV
- name: Configure fetch-content example
working-directory: examples/cmake-fetch-content
if: env.RUN_FETCH_EXAMPLE == 'true'
run: cmake -S . -B build
- name: Build fetch-content example
working-directory: examples/cmake-fetch-content
if: env.RUN_FETCH_EXAMPLE == 'true'
run: cmake --build build
- name: Run fetch-content example
working-directory: examples/cmake-fetch-content/build
if: env.RUN_FETCH_EXAMPLE == 'true'
run: ./VeryCoolProject
test:
name: Test
needs: [ examples ]
strategy:
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
disable_io: [ OFF ]
include:
- os: ubuntu-latest
disable_io: ON
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Get latest CMake and ninja
uses: lukka/get-cmake@latest
- name: Configure
shell: pwsh
run: cmake "--preset=ci-$("${{ matrix.os }}".split("-")[0])" -Dperturb_DISABLE_IO=${{ matrix.disable_io }}
- name: Build
run: cmake --build build
- name: Run tests on Unix
if: matrix.os != 'windows-latest'
working-directory: build/tests
run: |
cp ../../tests/SGP4-VER.TLE .
./test_perturb --duration --force-colors
- name: Run tests on Windows
if: matrix.os == 'windows-latest'
working-directory: build/tests/Debug
run: |
Copy-Item -Path ../../../tests/SGP4-VER.TLE -Destination .
./test_perturb.exe --duration --force-colors
docs:
name: Docs
needs: [ examples, test ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build docs with Doxygen
uses: mattnotmitt/doxygen-action@1.9.5
with:
working-directory: docs
- name: Deploy docs to Github pages
if: github.ref == 'refs/heads/master'
&& github.event_name == 'push'
&& github.repository_owner == 'gunvirranu'
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: docs/html