-
-
Notifications
You must be signed in to change notification settings - Fork 0
136 lines (130 loc) · 4.04 KB
/
ci.yml
File metadata and controls
136 lines (130 loc) · 4.04 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
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
125
126
127
128
129
130
131
132
133
134
135
136
name: Codegen
on:
schedule:
# Once per day, Monday to Friday
- cron: '0 19 * * 1-5'
push:
branches:
- main
pull_request:
jobs:
test:
strategy:
fail-fast: false
matrix:
platform:
- os: macos-latest
cc: clang
cxx: clang++
type: static
shell: sh
- os: macos-latest
cc: clang
cxx: clang++
type: shared
shell: sh
- os: macos-latest
cc: gcc-13
cxx: g++-13
type: static
shell: sh
- os: ubuntu-latest
cc: clang
cxx: clang++
type: static
shell: sh
- os: ubuntu-latest
cc: gcc
cxx: g++
type: static
shell: sh
- os: ubuntu-latest
cc: clang
cxx: clang++
type: shared
shell: sh
- os: ubuntu-latest
cc: gcc
cxx: g++
type: shared
shell: sh
- os: windows-latest
type: static
shell: pwsh
- os: windows-latest
type: shared
shell: pwsh
# Sanitizers
- os: ubuntu-latest
cc: clang
cxx: clang++
type: static
shell: sh
options: -DCODEGEN_ADDRESS_SANITIZER:BOOL=ON
- os: ubuntu-latest
cc: clang
cxx: clang++
type: static
shell: sh
options: -DCODEGEN_UNDEFINED_SANITIZER:BOOL=ON
defaults:
run:
shell: ${{ matrix.platform.shell }}
runs-on: ${{ matrix.platform.os }}
env:
CC: ${{ matrix.platform.cc }}
CXX: ${{ matrix.platform.cxx }}
steps:
- uses: actions/checkout@v4
- name: Install dependencies (macOS)
if: runner.os == 'macos'
run: brew bundle
env:
HOMEBREW_NO_ANALYTICS: 1
HOMEBREW_NO_AUTO_UPDATE: 1
- run: npm ci
- run: cmake --version
- name: Configure Codegen (static)
if: matrix.platform.type == 'static'
run: >
cmake -S . -B ./build
-DCMAKE_BUILD_TYPE:STRING=Release
-DCODEGEN_TESTS:BOOL=ON
-DCODEGEN_CONTRIB:BOOL=ON
-DCODEGEN_DOCS:BOOL=OFF
-DBUILD_SHARED_LIBS:BOOL=OFF
-DCMAKE_COMPILE_WARNING_AS_ERROR:BOOL=ON
${{ matrix.platform.options }}
- name: Configure Codegen (shared)
if: matrix.platform.type == 'shared'
run: >
cmake -S . -B ./build
-DCMAKE_BUILD_TYPE:STRING=Release
-DCODEGEN_TESTS:BOOL=ON
-DCODEGEN_CONTRIB:BOOL=ON
-DCODEGEN_DOCS:BOOL=OFF
-DBUILD_SHARED_LIBS:BOOL=ON
-DCMAKE_COMPILE_WARNING_AS_ERROR:BOOL=ON
${{ matrix.platform.options }}
- run: cmake --build ./build --config Release --target clang_format_test
- run: cmake --build ./build --config Release --target jsonschema_metaschema
- run: cmake --build ./build --config Release --parallel 4
- run: >
cmake --install ./build --prefix ./build/dist --config Release --verbose
--component sourcemeta_core
- run: >
cmake --install ./build --prefix ./build/dist --config Release --verbose
--component sourcemeta_core_dev
- run: >
cmake --install ./build --prefix ./build/dist --config Release --verbose
--component sourcemeta_codegen
- run: >
cmake --install ./build --prefix ./build/dist --config Release --verbose
--component sourcemeta_codegen_dev
# Not every CTest version supports the --test-dir option. If such option
# is not recognized, `ctest` will successfully exit finding no tests.
# Better to be sure and `cd` all the time here.
- run: cd ./build && ctest --build-config Release --output-on-failure --parallel
env:
# See https://clang.llvm.org/docs/UndefinedBehaviorSanitizer.html
UBSAN_OPTIONS: print_stacktrace=1