-
Notifications
You must be signed in to change notification settings - Fork 0
72 lines (69 loc) · 1.84 KB
/
test.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
name: test
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
test-on-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
- name: Setup CMake
uses: jwlawson/[email protected]
- name: Pull submodules
run: |
git submodule update --init --recursive
- name: Format check
uses: DoozyX/[email protected]
with:
source: 'include examples'
extensions: 'c,h,C,H,cpp,hpp,cc,hh,c++,h++,cxx,hxx,i,ixx,ipp,i++'
clangFormatVersion: 14
inplace: False
- name: Build examples with CMake
run: |
mkdir build
pushd build
cmake ..
make -j$(nproc)
popd
- name: Run tests
run: |
python3 ./test/test.py
- name: Clean CMake build files
run: |
rm -rf build
- name: Build examples with GNU Autotools
run: |
autoreconf -i
BUILD_TEST_EXAMPLES=1 ./configure
make -j$(nproc)
- name: Run tests
run: |
python3 ./test/test.py
test-on-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
- name: Setup MSBuild
uses: microsoft/[email protected]
with:
msbuild-architecture: x64
- name: Pull submodules
run: |
git submodule update --init --recursive
- name: Build examples
run: |
mkdir build
pushd build
cmake ..
MSBuild "simple_logger.sln" "-t:Build" "-p:Configuration=Release;Platform=x64" "-m"
popd
- name: Run tests
run: |
python3 ./test/test.py