forked from inikep/percona-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines.yml
299 lines (254 loc) · 8.56 KB
/
azure-pipelines.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
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
jobs:
- job:
timeoutInMinutes: 240
displayName: Ubuntu Bionic
pool:
vmImage: 'ubuntu-18.04'
variables:
UBUNTU_CODE_NAME: bionic
BOOST_VERSION: boost_1_70_0
BOOST_DIR: $(Pipeline.Workspace)/boost
CCACHE_DIR: $(Pipeline.Workspace)/ccache
CCACHE_COMPRESS: 1
CCACHE_COMPRESSLEVEL: 9
CCACHE_CPP2: 1
CCACHE_MAXSIZE: 2G
strategy:
matrix:
Clang-10 Debug:
Compiler: clang
CompilerVer: 10
BuildType: Debug
Clang-10 Release:
Compiler: clang
CompilerVer: 10
BuildType: RelWithDebInfo
GCC-9 Debug:
Compiler: gcc
CompilerVer: 9
BuildType: Debug
GCC-9 Release:
Compiler: gcc
CompilerVer: 9
BuildType: RelWithDebInfo
${{ if ne(variables['Build.Reason'], 'IndividualCI') }}:
Clang-9 Debug:
Compiler: clang
CompilerVer: 9
BuildType: Debug
${{ if ne(variables['Build.Reason'], 'IndividualCI') }}:
Clang-9 Release:
Compiler: clang
CompilerVer: 9
BuildType: RelWithDebInfo
GCC-8 Debug:
Compiler: gcc
CompilerVer: 8
BuildType: Debug
${{ if ne(variables['Build.Reason'], 'IndividualCI') }}:
GCC-8 Release:
Compiler: gcc
CompilerVer: 8
BuildType: RelWithDebInfo
Clang-8 Debug:
Compiler: clang
CompilerVer: 8
BuildType: Debug
${{ if ne(variables['Build.Reason'], 'IndividualCI') }}:
Clang-8 Release:
Compiler: clang
CompilerVer: 8
BuildType: RelWithDebInfo
GCC-7 Debug:
Compiler: gcc
CompilerVer: 7
BuildType: Debug
${{ if ne(variables['Build.Reason'], 'IndividualCI') }}:
GCC-7 Release:
Compiler: gcc
CompilerVer: 7
BuildType: RelWithDebInfo
Clang-7 Debug:
Compiler: clang
CompilerVer: 7
BuildType: Debug
${{ if ne(variables['Build.Reason'], 'IndividualCI') }}:
Clang-7 Release:
Compiler: clang
CompilerVer: 7
BuildType: RelWithDebInfo
${{ if ne(variables['Build.Reason'], 'IndividualCI') }}:
GCC-6 Debug:
Compiler: gcc
CompilerVer: 6
BuildType: Debug
${{ if ne(variables['Build.Reason'], 'IndividualCI') }}:
GCC-6 Release:
Compiler: gcc
CompilerVer: 6
BuildType: RelWithDebInfo
${{ if ne(variables['Build.Reason'], 'IndividualCI') }}:
Clang-6 Debug:
Compiler: clang
CompilerVer: 6.0
BuildType: Debug
${{ if ne(variables['Build.Reason'], 'IndividualCI') }}:
Clang-6 Release:
Compiler: clang
CompilerVer: 6.0
BuildType: RelWithDebInfo
GCC-5 Debug:
Compiler: gcc
CompilerVer: 5
BuildType: Debug
${{ if ne(variables['Build.Reason'], 'IndividualCI') }}:
GCC-5 Release:
Compiler: gcc
CompilerVer: 5
BuildType: RelWithDebInfo
Clang-5 Debug:
Compiler: clang
CompilerVer: 5.0
BuildType: Debug
${{ if ne(variables['Build.Reason'], 'IndividualCI') }}:
Clang-5 Release:
Compiler: clang
CompilerVer: 5.0
BuildType: RelWithDebInfo
steps:
- script: |
uname -r
df -Th
ls -l ..
pwd
ls -l
CC=$(Compiler)-$(CompilerVer)
if [[ "$(Compiler)" == "clang" ]]; then
CXX=clang++-$(CompilerVer)
else
CXX=g++-$(CompilerVer)
fi
echo CC=$CC CXX=$CXX BuildType=$(BuildType) Ubuntu=$UBUNTU_CODE_NAME
echo --- Configure required LLVM and Ubuntu Toolchain repositories
if [[ "$CC" == clang* ]]; then
PACKAGES="llvm-$(CompilerVer)-dev"
curl -sSL "http://apt.llvm.org/llvm-snapshot.gpg.key" | sudo -E apt-key add -
echo "deb http://apt.llvm.org/$UBUNTU_CODE_NAME/ llvm-toolchain-$UBUNTU_CODE_NAME-$(CompilerVer) main" | sudo tee -a /etc/apt/sources.list > /dev/null
fi
echo --- Update list of packages and download dependencies
sudo -E apt-add-repository -y "ppa:ubuntu-toolchain-r/test"
sudo -E apt-get -yq update >> ~/apt-get-update.log 2>&1
sudo -E apt-get -yq --no-install-suggests --no-install-recommends --allow-unauthenticated install $CXX $PACKAGES cmake cmake-curses-gui ccache bison libncurses5-dev libaio-dev libmecab-dev libnuma-dev liblzma-dev libssl-dev libreadline-dev libpam-dev libcurl4-openssl-dev || exit 1;
if [[ "$INVERTED" != "ON" ]]; then
sudo -E apt-get -yq --no-install-suggests --no-install-recommends --allow-unauthenticated install libevent-dev libeditline-dev liblz4-dev libre2-dev protobuf-compiler libprotobuf-dev libprotoc-dev libicu-dev || exit 1;
fi
UPDATE_TIME=$SECONDS
echo --- Packages updated in $UPDATE_TIME seconds.
$CC -v
$CXX -v
ccache --version
ccache --print-config
ccache --zero-stats
df -Th
COMPILER_VER=$(CompilerVer)
echo '##vso[task.setvariable variable=CompilerMajorVer]'${COMPILER_VER%.*}
echo '##vso[task.setvariable variable=CC]'$CC
echo '##vso[task.setvariable variable=CXX]'$CXX
echo '##vso[task.setvariable variable=UPDATE_TIME]'$UPDATE_TIME
echo '##vso[task.prependpath]/usr/lib/ccache'
displayName: '*** Install Build Dependencies'
- task: Cache@2
continueOnError: true
inputs:
key: ccache | $(Agent.OS)-$(Compiler)-$(CompilerMajorVer)-$(BuildType) | $(Build.SourceVersion)
restoreKeys: ccache | $(Agent.OS)-$(Compiler)-$(CompilerMajorVer)-$(BuildType)
path: $(CCACHE_DIR)
displayName: '*** Download/upload ccached files'
- task: Cache@2
continueOnError: true
inputs:
key: $(BOOST_VERSION)
restoreKeys: $(BOOST_VERSION)
path: $(BOOST_DIR)
displayName: '*** Download/upload $(BOOST_VERSION) libraries'
- checkout: self
fetchDepth: 32
- script: |
df -Th
git submodule sync
git submodule update --init --force --depth=256
displayName: '*** Update git submodules'
- script: |
df -Th
echo --- Set cmake parameters
COMPILE_OPT+=(
-DCMAKE_C_FLAGS_DEBUG=-g1
-DCMAKE_CXX_FLAGS_DEBUG=-g1
'-DCMAKE_C_FLAGS_RELWITHDEBINFO=-O2 -g1 -DNDEBUG'
'-DCMAKE_CXX_FLAGS_RELWITHDEBINFO=-O2 -g1 -DNDEBUG'
)
CMAKE_OPT="
-DCMAKE_BUILD_TYPE=$(BuildType)
-DBUILD_CONFIG=mysql_release
-DFEATURE_SET=community
-DENABLE_DOWNLOADS=1
-DDOWNLOAD_BOOST=1
-DWITH_BOOST=$(BOOST_DIR)
-DMYSQL_MAINTAINER_MODE=ON
-DCMAKE_C_COMPILER_LAUNCHER=/usr/bin/ccache
-DCMAKE_CXX_COMPILER_LAUNCHER=/usr/bin/ccache
-DWITH_KEYRING_VAULT=ON
-DWITH_PAM=ON
-DWITH_TOKUDB=ON
-DWITH_ROCKSDB=ON
-DWITH_CURL=system
-DWITH_MECAB=system
-DWITH_RAPIDJSON=bundled
-DWITH_SSL=system
-DWITH_LIBEVENT=bundled
"
if [[ "$INVERTED" != "ON" ]]; then
CMAKE_OPT+="
-DWITH_READLINE=system
-DWITH_ICU=system
-DWITH_LZ4=system
-DWITH_PROTOBUF=system
-DWITH_ZLIB=system
-DWITH_NUMA=ON
"
else
CMAKE_OPT+="
-DWITH_EDITLINE=bundled
-DWITH_ICU=bundled
-DWITH_LZ4=bundled
-DWITH_PROTOBUF=bundled
-DWITH_ZLIB=bundled
-DWITH_NUMA=OFF
-DWITH_ARCHIVE_STORAGE_ENGINE=OFF
-DWITH_BLACKHOLE_STORAGE_ENGINE=OFF
-DWITH_EXAMPLE_STORAGE_ENGINE=ON
-DWITH_FEDERATED_STORAGE_ENGINE=OFF
-DWITHOUT_PERFSCHEMA_STORAGE_ENGINE=ON
-DWITH_INNODB_MEMCACHED=ON
"
fi
echo --- CMAKE_OPT=\"$CMAKE_OPT\"
echo --- COMPILE_OPT=\"${COMPILE_OPT[@]}\"
mkdir bin; cd bin
CC=$CC CXX=$CXX cmake .. $CMAKE_OPT "${COMPILE_OPT[@]}" || exit 1
rm -f $(BOOST_DIR)/$(BOOST_VERSION).tar.gz
CMAKE_TIME=$SECONDS
echo --- CMake took $CMAKE_TIME seconds. Packages updated in $UPDATE_TIME seconds.
echo '##vso[task.setvariable variable=CMAKE_TIME]'$CMAKE_TIME
displayName: '*** CC=$(Compiler)-$(CompilerVer) cmake .. -DCMAKE_BUILD_TYPE=$(BuildType)'
- script: |
df -Th
cd bin
make -j2 || exit 1
ccache --show-stats
BUILD_TIME=$SECONDS
echo --- Total time $(($BUILD_TIME + $UPDATE_TIME + $CMAKE_TIME)) seconds. Build time $BUILD_TIME seconds. CMake took $CMAKE_TIME seconds. Packages updated in $UPDATE_TIME seconds.
df -Th
rm -rf *
df -Th
displayName: '*** Compile'