-
-
Notifications
You must be signed in to change notification settings - Fork 144
124 lines (107 loc) · 3.79 KB
/
unix_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
name: Unix CI
on: [push,pull_request]
jobs:
Test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-20.04
- ubuntu-latest
- macos-12
compiler:
# you can specify the version after `-` like "llvm-13.0.0".
- llvm-13.0.0
- clang++-14
- gcc-11
# - gcc-12
standard: [14, 17, 20, 23]
generator:
- "Ninja Multi-Config"
build_type:
- Release
- Debug
exclude:
# mingw is determined by this author to be too buggy to support
- os: macos-12
compiler: gcc-11
- os: ubuntu-20.04
compiler: llvm-13.0.0
include:
# Add appropriate variables for gcov version required. This will intentionally break
# if you try to use a compiler that does not have gcov set
- compiler: gcc-11
gcov_executable: gcov
- compiler: llvm-13.0.0
gcov_executable: "llvm-cov gcov"
# Set up preferred package generators, for given build configurations
- build_type: Release
package_generator: TBZ2
- os: windows-2022
compiler: msvc
generator: "Visual Studio 17 2022"
build_type: Debug
standard: 23
- os: windows-2022
compiler: msvc
generator: "Visual Studio 17 2022"
build_type: Release
standard: 23
package_generator: ZIP
steps:
- uses: actions/checkout@v2
- name: Setup Cpp
uses: aminya/setup-cpp@v1
with:
compiler: ${{ matrix.compiler }}
vcvarsall: ${{ contains(matrix.os, 'windows' )}}
cmake: true
ninja: true
vcpkg: false
ccache: true
clangtidy: true
cppcheck: true
gcovr: true
opencppcoverage: true
- name: setup dependencies - Unix
if: runner.os == 'Linux'
run: |
sudo apt-get -y update
sudo apt-get -y install -y ninja-build libboost-all-dev libasio-dev
- name: setup dependencies - macOS
if: runner.os == 'macOS'
run: |
brew install ninja boost asio
- name: setup dependencies - Windows
if: runner.os == 'Windows'
run: |
choco install ninja
choco install boost-msvc-14.1
# # Download and extract Asio
curl -L -o asio.zip https://github.com/chriskohlhoff/asio/archive/refs/tags/asio-1-18-2.zip
tar -xf asio.zip
move asio-asio-1-18-2 asio
- name: Configure CMake - Unix
if: runner.os != 'Windows'
run: |
cmake -S . -B ./build -G "${{matrix.generator}}" -DCMAKE_BUILD_TYPE:STRING=${{matrix.build_type}} -DCMAKE_CXX_STANDARD=${{matrix.standard}} -DCLI_BuildTests=ON -DCLI_BuildExamples=ON -DCLI_UseBoostAsio=ON
- name: Configure CMake - Windows
# windows need asio library path
if: runner.os == 'Windows'
run: |
cmake -S . -B ./build -G "${{matrix.generator}}" -DCMAKE_BUILD_TYPE:STRING=${{matrix.build_type}} -DCMAKE_CXX_STANDARD=${{matrix.standard}} -DCLI_BuildTests=ON -DCLI_BuildExamples=ON -DCLI_UseBoostAsio=ON -DASIO_INCLUDEDIR=${{ github.workspace }}/asio/asio/include
- name: Build
run: |
# cd /home/runner/work/cli/cli/build
# make all
cmake --build ./build --config ${{matrix.build_type}}
- name: run tests
# on windows test_suite throws an exception, but only on the CI environment!
if: runner.os != 'Windows'
# working-directory: ./build/test/${{matrix.build_type}}
working-directory: ./build
run: |
# cd /home/runner/work/cli/cli/build/test/
# ./test_suite
ctest -C ${{matrix.build_type}} --output-on-failure