-
Notifications
You must be signed in to change notification settings - Fork 178
93 lines (83 loc) · 2.27 KB
/
build_matrix.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
name: build
on:
push:
pull_request:
jobs:
build:
name: ${{ matrix.config.name }}
runs-on: ${{ matrix.config.os }}
strategy:
fail-fast: false
matrix:
config:
- {
name: "windows MinGW",
os: windows-latest,
build_type: "Debug",
cxx: "g++",
generators: "Ninja"
}
- {
name: "windows MSVC",
os: windows-latest,
build_type: "Debug",
cxx: "cl",
generators: "Ninja"
}
- {
name: "ubuntu g++",
os: ubuntu-latest,
build_type: "Debug",
cxx: "g++",
generators: "Ninja"
}
- {
name: "macos clang++",
os: macos-latest,
build_type: "Debug",
cxx: "clang++",
generators: "Ninja"
}
steps:
- uses: actions/checkout@v2
- name: Add msbuild to PATH env
if: matrix.config.name == 'windows MSVC'
uses: ilammy/msvc-dev-cmd@v1
- name: Install dependencies on windows
if: startsWith(matrix.config.os, 'windows')
run: |
choco install ninja cmake
ninja --version
cmake --version
- name: Install dependencies on ubuntu
if: startsWith(matrix.config.name, 'ubuntu')
run: |
sudo apt-get update
sudo apt-get install ninja-build cmake
ninja --version
cmake --version
gcc --version
- name: Install dependencies on macos
if: startsWith(matrix.config.os, 'macos')
run: |
brew install cmake ninja
ninja --version
cmake --version
- name: Configure
shell: bash
run: |
mkdir build
cmake \
-S . \
-B . \
-DCMAKE_BUILD_TYPE=${{ matrix.config.build_type }} \
-DCMAKE_CXX_COMPILER=${{ matrix.config.cxx }} \
-DSML_BUILD_EXAMPLES=ON \
-DSML_BUILD_TESTS=ON \
-G "${{ matrix.config.generators }}"
- name: Build
shell: bash
run: cmake --build . --config ${{ matrix.config.build_type }}
- name: Test
shell: bash
run: ctest --output-on-failure .