-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathpercona-server-for-mongodb-3.4-template.yml
510 lines (496 loc) · 21.6 KB
/
percona-server-for-mongodb-3.4-template.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
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
- job:
block-downstream: false
block-upstream: false
builders:
- shell: echo "###DESCRIPTION###${DESCRIPTION}###"
- raw:
xml: |
<hudson.plugins.descriptionsetter.DescriptionSetterBuilder plugin="[email protected]">
<regexp>^###DESCRIPTION###(.*)###$</regexp>
</hudson.plugins.descriptionsetter.DescriptionSetterBuilder>
- shell: |-
# we need to setup the instance first
# disable THP
echo "echo never > /sys/kernel/mm/transparent_hugepage/enabled" > disable-thp.sh
echo "echo never > /sys/kernel/mm/transparent_hugepage/defrag" >> disable-thp.sh
chmod +x disable-thp.sh
sudo -n ./disable-thp.sh
rm -f disable-thp.sh
echo "----------------"
echo "HOST INFO:"
echo "HOSTNAME: $(hostname)"
echo "USER: $(id)"
echo "DISK SPACE"
df -h
echo "MEMORY"
free -m
echo "LIMITS"
ulimit -a
echo "NETWORK"
ip addr show
echo "Transparent huge pages status:"
cat /sys/kernel/mm/transparent_hugepage/enabled
echo "----------------"
#
if [ $(grep -c $(hostname) /etc/hosts) -eq 0 ]; then
sudo sed -i "s/localhost/$(hostname) localhost/" /etc/hosts
echo "### HOSTS FILE AFTER ADDING HOSTNAME ###"
cat /etc/hosts
fi
#
sudo rm -rf /mnt/data /data
sudo mkdir /mnt/data
sudo chmod 777 /mnt/data
sudo ln -s /mnt/data /data
#
if [ ! -f /usr/local/go/bin/go ]; then
rm -f go1.11.4.linux-amd64.tar.gz
wget https://dl.google.com/go/go1.11.4.linux-amd64.tar.gz
sudo tar -C /usr/local -xzf go1.11.4.linux-amd64.tar.gz
fi
export PATH=$PATH:/usr/local/go/bin
#
sudo apt-get update
sudo apt-get -y install build-essential libexpat1-dev libpython-dev libpython2.7 libpython2.7-dev python-dev python2.7-dev g++-5 gcc-5 libgflags-dev libsnappy-dev gcc-4.8
sudo apt-get -y install zlib1g-dev libbz2-dev python-ptyprocess scons libsasl2-dev scons g++-4.8
sudo apt-get -y install pkg-config libpcap0.8-dev libssl-dev cmake valgrind libsasl2-dev
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
python get-pip.py --user
sudo ~/.local/bin/pip install pymongo subprocess32 PyYAML typing requests
sudo percona-server-mongodb/support-files/ldap-sasl/deploy_ldap_and_sasl.sh
# https://docs.mongodb.com/manual/tutorial/configure-ldap-sasl-openldap/#test-the-saslauthd-configuration
sudo chmod 755 /var/run/saslauthd
sudo percona-server-mongodb/support-files/ldap-sasl/check_saslauthd.sh
sudo apt-get clean all
- shell: |-
# clean workspace
if [ ${RELEASE_TEST} = true ]; then
rm -rf ${WORKSPACE}/*
fi
#cleanup
killall -9 mongos || true
killall -9 mongod || true
pkill -f killer.sh || true
- shell: |-
if [ ${RELEASE_TEST} != true ]; then
# prepare source
#
#git clone ${PSM_REPO}
cd percona-server-mongodb
#git checkout ${PSM_BRANCH}
REVISION=$(git rev-parse --short HEAD)
REVISION_LONG=$(git rev-parse HEAD)
# Need to fetch tags from upstream to be able to describe the commit with version
#if [ ${WORKFLOW_TYPE} = "param" ]; then
git remote add upstream https://github.com/mongodb/mongo.git
git fetch upstream --tags
#fi
PSM_VERSION=$(git describe --tags | sed 's/^psmdb-//' | sed 's/^r//' | awk -F '-' '{print $1}')
PSM_RELEASE=$(git describe --tags | sed 's/^psmdb-//' | sed 's/^r//' |awk -F '-' '{print $2}')
# TODO: mongo-tools repo sometimes doesn't have corresponding tag
# currently it uses the last tagged version
# MONGO_TOOLS_TAG="r${PSM_VERSION}"
# create a proper version.json
echo "{" > version.json
echo " \"version\": \"${PSM_VERSION}-${PSM_RELEASE}\"," >> version.json
echo " \"githash\": \"${REVISION_LONG}\"" >> version.json
echo "}" >> version.json
#
if [ ${MAIN_VERSION_LINE} = "v3.2" ]; then
rm -fr debian rpm
cp -a percona-packaging/manpages .
cp -a percona-packaging/docs/* .
fi
#
# submodules
git submodule init
git submodule update
#
rm -rf mongo-tools
git clone https://github.com/mongodb/mongo-tools.git
pushd mongo-tools
if [ ${MAIN_VERSION_LINE} = "v3.2" ]; then
git checkout v3.2
else
git checkout v3.4
fi
#MONGO_TOOLS_TAG=$(git describe --tags | awk -F '-' '{print $1}')
MONGO_TOOLS_TAG=$(git describe --tags)
git checkout $MONGO_TOOLS_TAG
echo "export PSMDB_TOOLS_COMMIT_HASH=\"$(git rev-parse HEAD)\"" > set_tools_revision.sh
echo "export PSMDB_TOOLS_REVISION=\"${PSM_VERSION}-${PSM_RELEASE}\"" >> set_tools_revision.sh
chmod +x set_tools_revision.sh
popd
#
cd ${WORKSPACE}
fi
rm -rf psmdb-misc-scripts
git clone ${MISC_SCRIPTS_REPO} --depth 1
- shell: |-
if [ ${RELEASE_TEST} != true ]; then
# build binaries
if [ -f /opt/percona-devtoolset/enable ]; then
source /opt/percona-devtoolset/enable
fi
#
export PATH=/usr/local/go/bin:$PATH
#
if [ -f /etc/debian_version ]; then
export CC=gcc-5
export CXX=g++-5
else
export CC=$(which gcc)
export CXX=$(which g++)
fi
#
if [ ${ASAN_RUN} = true ]; then
ASAN_OPTIONS="--allocator=system --sanitize=address"
fi
#
if [ ! -z "${CUSTOM_SUITE}" ]; then
UNITTESTS=$(echo "${CUSTOM_SUITE}" | grep -c "^unittests" || true)
DBTESTS=$(echo "${CUSTOM_SUITE}" | grep -c "^dbtest" || true)
INTEGRATIONTESTS=$(echo "${CUSTOM_SUITE}" | grep -c "^integration_tests" || true)
else
UNITTESTS=$(cat psmdb-misc-scripts/suite_sets/${SUITE}.txt | grep -c "^unittests" || true)
DBTESTS=$(cat psmdb-misc-scripts/suite_sets/${SUITE}.txt | grep -c "^dbtest" || true)
INTEGRATIONTESTS=$(cat psmdb-misc-scripts/suite_sets/${SUITE}.txt | grep -c "^integration_tests" || true)
fi
if [ ${UNITTESTS} -gt 0 ]; then
OPT_TARGETS=" unittests"
else
OPT_TARGETS=""
fi
if [ ${DBTESTS} -gt 0 ]; then
OPT_TARGETS="${OPT_TARGETS} dbtest"
else
OPT_TARGETS="${OPT_TARGETS}"
fi
if [ ${INTEGRATIONTESTS} -gt 0 ]; then
OPT_TARGETS="${OPT_TARGETS} integration_tests"
else
OPT_TARGETS="${OPT_TARGETS}"
fi
PSM_TARGETS="mongod mongos mongo mongobridge${OPT_TARGETS}"
TARBALL_SUFFIX=""
if [ -f /etc/debian_version ]; then
export OS_RELEASE="$(lsb_release -sc)"
fi
#
if [ -f /etc/redhat-release ]; then
export OS_RELEASE="centos$(lsb_release -sr | awk -F'.' '{print $1}')"
RHEL=$(rpm --eval %rhel)
fi
#
ARCH=$(uname -m 2>/dev/null||true)
PSMDIR=percona-server-mongodb
PSMDIR_ABS=${WORKSPACE}/percona-server-mongodb
TOOLSDIR=${PSMDIR}/mongo-tools
TOOLSDIR_ABS=${WORKSPACE}/${TOOLSDIR}
TOOLS_TAGS="ssl sasl"
NJOBS=$(grep -c processor /proc/cpuinfo)
# link PSM dir to /tmp to avoid "argument list too long error"
rm -fr /tmp/${PSMDIR}
ln -fs ${PSMDIR_ABS} /tmp/${PSMDIR}
cd /tmp
#
export CFLAGS="${CFLAGS:-} -fno-omit-frame-pointer"
export CXXFLAGS="${CFLAGS}"
export INSTALLDIR=${WORKSPACE}/install
# BLD-800
export PORTABLE=1
export USE_SSE=1
#
# TokuBackup
if [ ${MAIN_VERSION_LINE} = "v3.2" ]; then
pushd $PSMDIR/src/third_party/Percona-TokuBackup/backup
cmake . -DCMAKE_BUILD_TYPE=RelWithDebInfo -DCMAKE_INSTALL_PREFIX=/ -DBUILD_STATIC_LIBRARY=ON
make -j$NJOBS
make install DESTDIR=${INSTALLDIR}
popd
fi
# PerconaFT
if [ ${MAIN_VERSION_LINE} = "v3.2" ]; then
pushd $PSMDIR/src/third_party/PerconaFT
cmake . -DCMAKE_BUILD_TYPE=Release -DUSE_VALGRIND=OFF -DTOKU_DEBUG_PARANOID=OFF -DBUILD_TESTING=OFF -DCMAKE_INSTALL_PREFIX=/ -DJEMALLOC_SOURCE_DIR=${PSMDIR_ABS}/src/third_party/jemalloc
make -j$NJOBS VERBOSE=1
make install DESTDIR=${INSTALLDIR}
popd
fi
#
# RocksDB -old
#pushd ${PSMDIR}/src/third_party/rocksdb
## static liblz4.a
#rm -rf lz4-r131 || true
#wget https://codeload.github.com/Cyan4973/lz4/tar.gz/r131
#mv r131 lz4-r131.tar.gz
#tar xvzf lz4-r131.tar.gz
#pushd lz4-r131/lib
#make CFLAGS=' -O3 -I. -std=c99 -Wall -Wextra -Wundef -Wshadow -Wcast-align -Wstrict-prototypes -pedantic -fPIC' all
#popd
#rm -rf ${INSTALLDIR}
#mkdir -p ${INSTALLDIR}/include
#mkdir -p ${INSTALLDIR}/bin
#mkdir -p ${INSTALLDIR}/lib
#cp lz4-r131/lib/liblz4.a .
#cp ./lz4-r131/lib/lz4.h ${INSTALLDIR}/include
#cp ./lz4-r131/lib/lz4frame.h ${INSTALLDIR}/include
#cp ./lz4-r131/lib/lz4hc.h ${INSTALLDIR}/include
#cp ./lz4-r131/lib/liblz4.a ${INSTALLDIR}/lib
## static librocksdb.a
#make -j$NJOBS EXTRA_CFLAGS='-fPIC' EXTRA_CXXFLAGS='-fPIC' DISABLE_JEMALLOC=1 static_lib
#make install-static INSTALL_PATH=${INSTALLDIR}
#popd
#
# static librocksdb.a
pushd ${PSMDIR}/src/third_party/rocksdb
if [ ${BUILD_TYPE} = "debug" ]; then
make -j4 EXTRA_CFLAGS='-fPIC -DLZ4 -I../lz4-r131 -DSNAPPY -I../snappy-1.1.3 -DHAVE_SSE42' EXTRA_CXXFLAGS='-fPIC -DLZ4 -I../lz4-r131 -DSNAPPY -I../snappy-1.1.3 -DHAVE_SSE42' DISABLE_JEMALLOC=1 dbg
else
make -j4 EXTRA_CFLAGS='-fPIC -DLZ4 -I../lz4-r131 -DSNAPPY -I../snappy-1.1.3 -DHAVE_SSE42' EXTRA_CXXFLAGS='-fPIC -DLZ4 -I../lz4-r131 -DSNAPPY -I../snappy-1.1.3 -DHAVE_SSE42' DISABLE_JEMALLOC=1 static_lib
fi
rm -rf ${INSTALLDIR}
mkdir -p ${INSTALLDIR}/include
mkdir -p ${INSTALLDIR}/bin
mkdir -p ${INSTALLDIR}/lib
make install-static INSTALL_PATH=${INSTALLDIR}
#
# Finally build Percona Server for MongoDB with SCons
cd ${PSMDIR_ABS}
if [ ${MAIN_VERSION_LINE} = "v3.2" ]; then
if [ ${BUILD_TYPE} = "debug" ]; then
buildscripts/scons.py CC=${CC} CXX=${CXX} --ssl --disable-warnings-as-errors --dbg=on -j$NJOBS --use-sasl-client --tokubackup --wiredtiger --audit --rocksdb --PerconaFT --inmemory --hotbackup ${ASAN_OPTIONS} CPPPATH=${INSTALLDIR}/include LIBPATH=${INSTALLDIR}/lib ${PSM_TARGETS}
else
buildscripts/scons.py CC=${CC} CXX=${CXX} --release --ssl --opt=on -j$NJOBS --use-sasl-client --tokubackup --wiredtiger --audit --rocksdb --PerconaFT --inmemory --hotbackup ${ASAN_OPTIONS} CPPPATH=${INSTALLDIR}/include LIBPATH=${INSTALLDIR}/lib ${PSM_TARGETS}
fi
else
if [ ${BUILD_TYPE} = "debug" ]; then
buildscripts/scons.py CC=${CC} CXX=${CXX} --ssl --disable-warnings-as-errors --dbg=on -j$NJOBS --use-sasl-client --wiredtiger --audit --rocksdb --inmemory --hotbackup ${ASAN_OPTIONS} CPPPATH=${INSTALLDIR}/include LIBPATH=${INSTALLDIR}/lib ${PSM_TARGETS}
else
buildscripts/scons.py CC=${CC} CXX=${CXX} --release --ssl --opt=on -j$NJOBS --use-sasl-client --wiredtiger --audit --rocksdb --inmemory --hotbackup ${ASAN_OPTIONS} CPPPATH=${INSTALLDIR}/include LIBPATH=${INSTALLDIR}/lib ${PSM_TARGETS}
fi
fi
#
# scons install doesn't work - it installs the binaries not linked with fractal tree
#scons --prefix=$PWD/$PSMDIR install
#
#mkdir -p ${PSMDIR}/bin
#for target in ${PSM_TARGETS[@]}; do
# cp -f $target ${PSMDIR}/bin
# strip --strip-debug ${PSMDIR}/bin/${target}
#done
#
cd ${WORKSPACE}
#
# Build mongo tools
cd ${TOOLSDIR}
mkdir -p build_tools/src/github.com/mongodb/mongo-tools
rm -rf vendor/pkg
[[ ${PATH} == *"/usr/local/go/bin"* && -x /usr/local/go/bin/go ]] || export PATH=/usr/local/go/bin:${PATH}
export GOROOT="/usr/local/go/"
cp -r $(ls | grep -v build_tools) build_tools/src/github.com/mongodb/mongo-tools/
cd build_tools/src/github.com/mongodb/mongo-tools
. ./set_tools_revision.sh
sed -i 's|VersionStr="$(git describe)"|VersionStr="$PSMDB_TOOLS_REVISION"|' set_goenv.sh
sed -i 's|Gitspec="$(git rev-parse HEAD)"|Gitspec="$PSMDB_TOOLS_COMMIT_HASH"|' set_goenv.sh
. ./set_goenv.sh
if [ "${BUILD_TYPE}" == "debug" ]; then
sed -i 's|go build|go build -a -x|' build.sh
else
sed -i 's|go build|go build -a |' build.sh
fi
sed -i 's|exit $ec||' build.sh
. ./build.sh ${TOOLS_TAGS}
# move mongo tools to PSM installation dir
mv bin/* ${PSMDIR_ABS}
# end build tools
fi
- raw:
xml: |
<org.jenkinsci.plugins.conditionalbuildstep.ConditionalBuilder plugin="[email protected]">
<runner class="org.jenkins_ci.plugins.run_condition.BuildStepRunner$DontRun" plugin="[email protected]" />
<runCondition class="org.jenkins_ci.plugins.run_condition.contributed.ShellCondition" plugin="[email protected]">
<command>if [ ${RELEASE_TEST} = true ]; then
exit 0
else
exit 1
fi</command>
</runCondition>
<conditionalbuilders>
<hudson.plugins.copyartifact.CopyArtifact plugin="[email protected]">
<project>percona-server-mongodb-3.4-new-SOURCE</project>
<filter>*.properties, source_tarball/*.tar.gz</filter>
<target />
<excludes />
<selector class="hudson.plugins.copyartifact.StatusBuildSelector" />
<flatten>true</flatten>
<doNotFingerprintArtifacts>false</doNotFingerprintArtifacts>
</hudson.plugins.copyartifact.CopyArtifact>
<hudson.plugins.copyartifact.CopyArtifact plugin="[email protected]">
<project>percona-server-mongodb-3.4-TARBALL-new-release/label_exp=min-xenial-x64</project>
<filter>tarball/*.tar.gz</filter>
<target />
<excludes />
<selector class="hudson.plugins.copyartifact.StatusBuildSelector" />
<flatten>true</flatten>
<doNotFingerprintArtifacts>false</doNotFingerprintArtifacts>
</hudson.plugins.copyartifact.CopyArtifact>
</conditionalbuilders>
</org.jenkinsci.plugins.conditionalbuildstep.ConditionalBuilder>
- shell: |-
# run tests
cd ${WORKSPACE}
PSMDIR="percona-server-mongodb"
PSMDIR_ABS=${WORKSPACE}/${PSMDIR}
DISTRIBUTION="xenial"
if [ ${RELEASE_TEST} = true ]; then
#wget http://jenkins.percona.com/job/percona-server-mongodb-3.4-SOURCE/lastSuccessfulBuild/artifact/percona-server-mongodb-34.properties
PSM_VERSION=$(grep '^VERSION=' percona-server-mongodb-34.properties|cut -d'=' -f2)
PSM_RELEASE=$(grep '^RELEASE=' percona-server-mongodb-34.properties|cut -d'=' -f2)
#wget http://jenkins.percona.com/job/percona-server-mongodb-3.4-SOURCE/lastSuccessfulBuild/artifact/percona-server-mongodb-${PSM_VERSION}-${PSM_RELEASE}.tar.gz
#wget http://jenkins.percona.com/job/percona-server-mongodb-3.4-TARBALL-release/label_exp=ubuntu-xenial-64bit/lastSuccessfulBuild/artifact/percona-server-mongodb-${PSM_VERSION}-${PSM_RELEASE}-${DISTRIBUTION}-x86_64.tar.gz
if [ ! -f "percona-server-mongodb-${PSM_VERSION}-${PSM_RELEASE}.tar.gz" ]; then
echo "Tarball percona-server-mongodb-${PSM_VERSION}-${PSM_RELEASE}.tar.gz doesn't exists!"
exit 1
fi
if [ ! -f "percona-server-mongodb-${PSM_VERSION}-${PSM_RELEASE}-${DISTRIBUTION}-x86_64.tar.gz" ]; then
echo "Tarball percona-server-mongodb-${PSM_VERSION}-${PSM_RELEASE}-${DISTRIBUTION}-x86_64.tar.gz doesn't exists!"
exit 1
fi
tar xf percona-server-mongodb-${PSM_VERSION}-${PSM_RELEASE}.tar.gz
tar xf percona-server-mongodb-${PSM_VERSION}-${PSM_RELEASE}-${DISTRIBUTION}-x86_64.tar.gz
mv percona-server-mongodb-${PSM_VERSION}-${PSM_RELEASE}/bin/* percona-server-mongodb-${PSM_VERSION}-${PSM_RELEASE}
mv percona-server-mongodb-${PSM_VERSION}-${PSM_RELEASE} ${PSMDIR}
fi
if [ "$JOBS" != "auto" ]; then
sed -i "s/^RESMOKE_JOBS=.*$/RESMOKE_JOBS=${JOBS}/" psmdb-misc-scripts/run_resmoke_psmdb_3.2.sh
fi
if [ ! -z "${CUSTOM_SUITE}" ]; then
echo "${CUSTOM_SUITE}" > psmdb-misc-scripts/suite_sets/custom.txt
TEST_SUITE_FILE="custom.txt"
else
TEST_SUITE_FILE="${SUITE}.txt"
fi
cd ${PSMDIR_ABS}
find build/opt -type f -name '*.a' -delete || true
find build/opt -type f -name '*.o' -delete || true
touch killer.log
if [ ${ENABLE_KILLER} = true ]; then
../psmdb-misc-scripts/killer.sh &
fi
for trial in `seq 1 ${NUM_TRIALS}`;
do
../psmdb-misc-scripts/run_resmoke_psmdb_3.2.sh ${trial} ${TEST_SUITE_FILE}
done
../psmdb-misc-scripts/resmoke2junit.py
tar czf resmoke_logs.tar.gz *.log *.json *.xml
#cleanup
killall -9 mongos || true
killall -9 mongod || true
pkill -f killer.sh || true
concurrent: false
description: null
disabled: true
name: !!python/unicode 'percona-server-for-mongodb-3.4-template'
project-type: freestyle
properties:
- raw:
xml: |
<hudson.plugins.buildblocker.BuildBlockerProperty plugin="[email protected]">
<useBuildBlocker>false</useBuildBlocker>
<blockLevel>GLOBAL</blockLevel>
<scanQueueFor>DISABLED</scanQueueFor>
<blockingJobs />
</hudson.plugins.buildblocker.BuildBlockerProperty>
- raw:
xml: |
<hudson.plugins.disk__usage.DiskUsageProperty plugin="[email protected]" />
publishers:
- raw:
xml: |
<hudson.plugins.warnings.WarningsPublisher plugin="[email protected]">
<healthy />
<unHealthy />
<thresholdLimit>low</thresholdLimit>
<pluginName>[WARNINGS] </pluginName>
<defaultEncoding />
<canRunOnFailed>false</canRunOnFailed>
<usePreviousBuildAsReference>false</usePreviousBuildAsReference>
<useStableBuildAsReference>false</useStableBuildAsReference>
<useDeltaValues>false</useDeltaValues>
<thresholds plugin="[email protected]">
<unstableTotalAll />
<unstableTotalHigh />
<unstableTotalNormal />
<unstableTotalLow />
<unstableNewAll />
<unstableNewHigh />
<unstableNewNormal />
<unstableNewLow />
<failedTotalAll />
<failedTotalHigh />
<failedTotalNormal />
<failedTotalLow />
<failedNewAll />
<failedNewHigh />
<failedNewNormal />
<failedNewLow />
</thresholds>
<shouldDetectModules>false</shouldDetectModules>
<dontComputeNew>true</dontComputeNew>
<doNotResolveRelativePaths>true</doNotResolveRelativePaths>
<includePattern />
<excludePattern />
<messagesPattern />
<categoriesPattern />
<parserConfigurations />
<consoleParsers>
<hudson.plugins.warnings.ConsoleParser>
<parserName>GNU Make + GNU C Compiler (gcc)</parserName>
</hudson.plugins.warnings.ConsoleParser>
</consoleParsers>
</hudson.plugins.warnings.WarningsPublisher>
- raw:
xml: |
<hudson.tasks.ArtifactArchiver>
<artifacts>percona-server-mongodb/resmoke_summary*.log, percona-server-mongodb/killer.log, percona-server-mongodb/resmoke_logs.tar.gz</artifacts>
<allowEmptyArchive>false</allowEmptyArchive>
<onlyIfSuccessful>false</onlyIfSuccessful>
<fingerprint>false</fingerprint>
<defaultExcludes>true</defaultExcludes>
<caseSensitive>true</caseSensitive>
</hudson.tasks.ArtifactArchiver>
- raw:
xml: |
<hudson.tasks.junit.JUnitResultArchiver plugin="[email protected]">
<testResults>percona-server-mongodb/junit.xml</testResults>
<keepLongStdio>false</keepLongStdio>
<healthScaleFactor>1.0</healthScaleFactor>
<allowEmptyResults>false</allowEmptyResults>
</hudson.tasks.junit.JUnitResultArchiver>
- raw:
xml: |
<jenkins.plugins.slack.SlackNotifier plugin="[email protected]">
<baseUrl />
<teamDomain />
<authToken />
<authTokenCredentialId />
<botUser>false</botUser>
<room>psmdb-standup</room>
<startNotification>false</startNotification>
<notifySuccess>false</notifySuccess>
<notifyAborted>false</notifyAborted>
<notifyNotBuilt>false</notifyNotBuilt>
<notifyUnstable>true</notifyUnstable>
<notifyRegression>false</notifyRegression>
<notifyFailure>true</notifyFailure>
<notifyBackToNormal>false</notifyBackToNormal>
<notifyRepeatedFailure>false</notifyRepeatedFailure>
<includeTestSummary>true</includeTestSummary>
<includeFailedTests>false</includeFailedTests>
<commitInfoChoice>AUTHORS_AND_TITLES</commitInfoChoice>
<includeCustomMessage>false</includeCustomMessage>
<customMessage />
</jenkins.plugins.slack.SlackNotifier>
triggers: []
wrappers: []