-
Notifications
You must be signed in to change notification settings - Fork 2
224 lines (195 loc) · 8.12 KB
/
cmake.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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
# ##################################################################
#
# CMake workflow for areg-sdk Demo project
#
# ##################################################################
name: CMake
on:
push: # Keep empty to run on each branch when push the code. Otherwise use branches: [ master ]
branches: [ main ]
pull_request: # Set to master to run only when merge with master branch
branches: [ main ]
env:
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
BUILD_TYPE: Release
# The CMake configure and build commands are platform agnostic and should work equally well on Windows or Linux.
# You can convert this to a matrix build if you need cross-platform coverage.
# See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
jobs:
build-tests:
name: ${{matrix.config.name}}
runs-on: ${{matrix.config.os}}
strategy:
fail-fast: false
matrix:
config: # Create matrix with combinations
# compile AREG engine as a shared library with GNU g++ / gcc on Ubuntu Linux, enable AREG extensions and logs
- { name: linux-gnu-g++-shared,
os: ubuntu-latest,
lib: shared,
family: gnu,
cxx: g++,
comp: ON,
before: ON
}
# compile AREG engine as a shared library with GNU g++ / gcc on Ubuntu Linux, enable AREG extensions and no logs
- { name: linux-gnu-g++-static,
os: ubuntu-latest,
lib: static,
family: gnu,
cxx: g++,
comp: OFF,
before: OFF
}
# compile AREG engine as a static library with GNU g++ / gcc on Ubuntu Linux, enable AREG extensions and logs
- { name: linux-gnu-gcc-shared,
os: ubuntu-latest,
lib: shared,
family: gnu,
cxx: gcc,
comp: OFF,
before: ON
}
# compile AREG engine as a shared library with GNU g++ / gcc on Ubuntu Linux, disable AREG extensions and logs
- { name: linux-gnu-gcc-static,
os: ubuntu-latest,
lib: shared,
family: gnu,
cxx: gcc,
comp: ON,
before: OFF
}
# compile AREG engine as a shared library with clang on Ubuntu Linux, enable AREG extensions and logs
- { name: linux-llvm-clang++-shared,
os: ubuntu-latest,
lib: shared,
family: llvm,
cxx: clang++,
comp: ON,
before: ON
}
# compile AREG engine as a shared library with clang on Ubuntu Linux, enable AREG extensions and no logs
- { name: linux-llvm-clang++-static,
os: ubuntu-latest,
lib: static,
family: llvm,
cxx: clang++,
comp: OFF,
before: OFF
}
# compile AREG engine as a shared library with clang on Ubuntu Linux, enable AREG extensions and logs
- { name: linux-llvm-clang-shared,
os: ubuntu-latest,
lib: shared,
family: llvm,
cxx: clang,
comp: OFF,
before: ON
}
# compile AREG engine as a shared library with clang on Ubuntu Linux, enable AREG extensions and no logs
- { name: linux-llvm-clang-static,
os: ubuntu-latest,
lib: static,
family: llvm,
cxx: clang,
comp: ON,
before: OFF
}
# compile AREG engine as a shared with CYGWIN g++ / gcc on Windows, enable AREG extensions and logs
- { name: win-cygwin-g++-shared,
os: windows-latest,
lib: shared,
family: cygwin,
cxx: g++,
comp: ON,
before: ON
}
# compile AREG engine as a shared with CYGWIN g++ / gcc on Windows, enable AREG extensions and logs
- { name: win-cygwin-g++-static,
os: windows-latest,
lib: static,
family: cygwin,
cxx: g++,
comp: OFF,
before: OFF
}
# compile AREG engine as a shared with CYGWIN g++ / gcc on Windows, enable AREG extensions and logs
- { name: win-cygwin-gcc-shared,
os: windows-latest,
lib: shared,
family: cygwin,
cxx: gcc,
comp: OFF,
before: ON
}
# compile AREG engine as a shared with CYGWIN g++ / gcc on Windows, enable AREG extensions and logs
- { name: win-cygwin-gcc-static,
os: windows-latest,
lib: static,
family: cygwin,
cxx: gcc,
comp: ON,
before: OFF
}
# compile AREG engine as a shared with MSVC on Windows, enable AREG extensions and logs
- { name: win-msvc-cl-shared,
os: windows-latest,
lib: shared,
family: msvc,
cxx: cl,
comp: ON,
before: ON
}
# compile AREG engine as a shared with MSVC on Windows, enable AREG extensions and logs
- { name: win-msvc-cl-static,
os: windows-latest,
lib: static,
family: msvc,
cxx: cl,
comp: OFF,
before: OFF
}
steps:
- name: Checkout AREG SDK Demo project sources and dependencies
uses: actions/checkout@v4
# The checkout of submodule is optional, can be escaped in case of cmake build
with:
submodules: recursive
- name: Setup Java JDK to run code generator
uses: actions/[email protected]
with:
java-version: 17
java-package: jre
distribution: temurin
- name: Update compilers on Linux
if: matrix.config.os == 'ubuntu-latest'
# Update compilers, set C/C++ compilers
run: sudo apt-get update
- name: Set Windows PATH environment variable for cygwin
if: matrix.config.os == 'windows-latest' && matrix.config.family == 'cygwin'
run: echo "PATH=C:\cygwin;C:\cygwin\bin;C:\cygwin\lib;%SYSTEMROOT%\system32;%PATH%" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
- name: Install cygwin on Windows
if: matrix.config.os == 'windows-latest' && matrix.config.family == 'cygwin'
uses: cygwin/cygwin-install-action@v4
with:
packages: cmake, dos2unix, flexdll, gcc-g++, git, ncurses, libncurses-devel, make
- name: Set cmake cache destination for Linux
if: matrix.config.os == 'ubuntu-latest'
run: echo "CACHE_DEST=./product/cache/${{matrix.config.name}}" >> "$GITHUB_ENV"
- name: Set cmake cache destination for Windows
if: matrix.config.os == 'windows-latest'
run: echo "CACHE_DEST=./product/cache/${{matrix.config.name}}" >> $env:GITHUB_ENV
- name: Configure CMake and pass compiler option
if: matrix.config.comp == 'ON'
working-directory: ${{github.workspace}}
run: |
cmake -B ${{env.CACHE_DEST}} -DAREG_COMPILER=${{matrix.config.cxx}} -DAREG_BUILD_TYPE=${{env.BUILD_TYPE}} -DAREG_BINARY=${{matrix.config.lib}} -DINTEGRATE_AREG_BEFORE_PROJECT:BOOL=${{matrix.config.before}}
- name: Configure CMake and pass compiler family option
if: matrix.config.comp == 'OFF'
working-directory: ${{github.workspace}}
run: |
cmake -B ${{env.CACHE_DEST}} -DAREG_COMPILER_FAMILY=${{matrix.config.family}} -DAREG_BUILD_TYPE=${{env.BUILD_TYPE}} -DAREG_BINARY=${{matrix.config.lib}} -DINTEGRATE_AREG_BEFORE_PROJECT:BOOL=${{matrix.config.before}}
- name: Build with CMake
working-directory: ${{github.workspace}}
# Build your program with the given configuration
run: cmake --build ${{env.CACHE_DEST}} -j 20