forked from baresip/re
-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (32 loc) · 866 Bytes
/
strict-c.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
name: Strict C checks
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
strict-c:
runs-on: ubuntu-latest
env:
CMAKE_GENERATOR: Ninja
steps:
- uses: actions/checkout@v4
- name: fix flaky azure mirrors
if: ${{ runner.os == 'Linux' }}
run: |
sudo sed -i 's/azure\./de\./' /etc/apt/sources.list
- name: install packages
run: |
sudo apt-get update && sudo apt-get install -y ninja-build
- name: make strict C99
run: |
cmake -DCMAKE_C_STANDARD=99 -DCMAKE_C_EXTENSIONS=OFF -DCMAKE_C_FLAGS="-Werror" -B build
cmake --build build
rm -Rf build
- name: make strict C11
run: |
cmake -DCMAKE_C_STANDARD=11 -DCMAKE_C_EXTENSIONS=OFF -DCMAKE_C_FLAGS="-Werror" -B build
cmake --build build
rm -Rf build