-
Notifications
You must be signed in to change notification settings - Fork 15
79 lines (79 loc) · 2.56 KB
/
Copy pathccpp.yml
File metadata and controls
79 lines (79 loc) · 2.56 KB
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
---
name: Build CI
on: [push] # yamllint disable-line rule:truthy
jobs:
build:
name: ${{ matrix.config.name }}
runs-on: ${{ matrix.config.os }}
strategy:
fail-fast: false
matrix:
config:
- {
name: "Windows MSVC",
enabled: 1,
os: windows-latest,
deps: "",
config: "cmake
-B build
-DCMAKE_TOOLCHAIN_FILE=C:/vcpkg/scripts/buildsystems/vcpkg.cmake
-DRTOSC_WERROR=1
-DCMAKE_BUILD_TYPE=Release
",
build: "cmake --build build --config Release",
test: "ctest --output-on-failure --test-dir build"
}
- {
name: "Ubuntu gcc",
enabled: 1,
os: ubuntu-latest,
deps: "sudo apt-get install liblo-dev",
config: "cd build && cmake -DRTOSC_WERROR=1 ..",
build: "cd build && make",
test: "cd build && ctest --output-on-failure"
}
- {
name: "Ubuntu clang+lld",
enabled: 1,
os: ubuntu-latest,
deps: "sudo apt-get install liblo-dev",
config: "cd build &&
cmake
-DRTOSC_WERROR=1
-DCMAKE_C_COMPILER=clang
-DCMAKE_CXX_COMPILER=clang++
-DCMAKE_SHARED_LINKER_FLAGS='-fuse-ld=lld'
-DCMAKE_EXE_LINKER_FLAGS='-fuse-ld=lld'
..",
build: "cd build && make",
test: "cd build && ctest --output-on-failure"
}
- {
name: "macOS clang",
enabled: 1,
os: macos-latest,
deps: "brew install liblo",
config: "cd build && cmake -DRTOSC_WERROR=1 ..",
build: "cd build && make",
test: "cd build && ctest --output-on-failure"
}
steps:
- name: check out
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: install deps
if: ${{ matrix.config.enabled == 1 }}
run: ${{ matrix.config.deps }}
- name: create build directory
if: ${{ matrix.config.enabled == 1 }}
run: mkdir build
- name: configure
if: ${{ matrix.config.enabled == 1 }}
run: ${{ matrix.config.config }}
- name: make
if: ${{ matrix.config.enabled == 1 }}
run: ${{ matrix.config.build }}
- name: make test
if: ${{ matrix.config.enabled == 1 }}
run: ${{ matrix.config.test }}