File tree Expand file tree Collapse file tree 1 file changed +15
-2
lines changed Expand file tree Collapse file tree 1 file changed +15
-2
lines changed Original file line number Diff line number Diff line change 8
8
# Variables #
9
9
# ######################################
10
10
11
- c_driver_variables :
11
+ variables :
12
12
13
13
# # Task list
14
14
benchmark_compile : &benchmark_compile
@@ -20,6 +20,8 @@ c_driver_variables:
20
20
mongo_download_url_prefixes :
21
21
mongo_v32 : &mongo_v32
22
22
mongo_url : " https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-3.2.10.tgz"
23
+ mongo_v44 : &mongo_v44
24
+ mongo_url : " http://downloads.10gen.com/linux/mongodb-linux-x86_64-enterprise-rhel62-v4.4-latest.tgz"
23
25
24
26
# # Common sets of CFLAGS
25
27
cflags :
@@ -35,7 +37,8 @@ c_driver_variables:
35
37
set -o verbose
36
38
. "./.evergreen/find-cmake.sh"
37
39
38
- $CMAKE -DENABLE_TESTS=OFF -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=mongoc . && make -j8 && make install
40
+ # Disable zstd. centos6-perf does not have libzstd installed.
41
+ $CMAKE -DENABLE_TESTS=OFF -DCMAKE_BUILD_TYPE=Release -DENABLE_ZSTD=OFF -DCMAKE_INSTALL_PREFIX=mongoc . && make -j8 && make install
39
42
git clone [email protected] :mongodb/mongo-c-driver-performance.git
40
43
cd mongo-c-driver-performance
41
44
$CMAKE -DCMAKE_BUILD_TYPE=Release -DCMAKE_PREFIX_PATH=../mongoc . && make -j8
@@ -274,3 +277,13 @@ buildvariants:
274
277
run_on :
275
278
- centos6-perf
276
279
tasks : *benchmark_tests
280
+
281
+ - name : c-driver-benchmark-mongo44
282
+ display_name : " C Driver Benchmark Mongo 4.4"
283
+ expansions :
284
+ << : *cflags_64
285
+ << : *mongo_v44
286
+ << : *benchmark_common
287
+ run_on :
288
+ - centos6-perf
289
+ tasks : *benchmark_tests
You can’t perform that action at this time.
0 commit comments