summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Whalen <ian.whalen@gmail.com>2018-07-03 08:48:07 -0700
committerIan Whalen <ian.whalen@gmail.com>2018-07-03 08:49:55 -0700
commitf4ad4f148a0ac37957bc854aa41c9ed53deceed9 (patch)
treee0dff36d431aa65593a2d8d402fa858d01a15da9
parent393c0da8464d2e3aea20d17168f529c00466d6f3 (diff)
downloadmongo-f4ad4f148a0ac37957bc854aa41c9ed53deceed9.tar.gz
SERVER-35859 Remove RocksDB buildvariant
-rw-r--r--etc/evergreen.yml43
1 files changed, 0 insertions, 43 deletions
diff --git a/etc/evergreen.yml b/etc/evergreen.yml
index 5311d8297a9..2e638becb90 100644
--- a/etc/evergreen.yml
+++ b/etc/evergreen.yml
@@ -211,7 +211,6 @@ functions:
directory: ${git_project_directory|src}
revisions: # for each module include revision as <module_name> : ${<module_name>_rev}
enterprise: ${enterprise_rev}
- rocksdb: ${rocksdb_rev}
"fetch artifacts" : &fetch_artifacts
command: s3.get
@@ -475,19 +474,6 @@ functions:
done
rm mongo-debugsymbols.tgz 2>/dev/null || true
- "build rocksdb" :
- command: shell.exec
- params:
- script: |
- set -o errexit
- set -o verbose
- if [ "${build_rocksdb|}" = "true" ]; then
- rm -rf rocksdb
- git clone https://github.com/facebook/rocksdb.git
- cd rocksdb
- make USE_RTTI=1 CC=/opt/mongodbtoolchain/v2/bin/gcc CXX=/opt/mongodbtoolchain/v2/bin/g++ static_lib
- fi
-
"fetch and build OpenSSL" :
command: shell.exec
params:
@@ -2292,7 +2278,6 @@ tasks:
- func: "set up credentials"
- func: "fetch and build OpenSSL"
- func: "build new tools" # noop if ${newtools} is not "true"
- - func: "build rocksdb" # noop if ${build_rocksdb} is not "true"
- func: "generate compile expansions"
# Then we load the generated version data into the agent so we can use it in task definitions
- func: "apply compile expansions"
@@ -2438,7 +2423,6 @@ tasks:
- func: "set up credentials"
- func: "fetch and build OpenSSL"
- func: "build new tools" # noop if ${newtools} is not "true"
- - func: "build rocksdb" # noop if ${build_rocksdb} is not "true"
- func: "generate compile expansions"
# Then we load the generated version data into the agent so we can use it in task definitions.
- func: "apply compile expansions"
@@ -5347,11 +5331,6 @@ modules:
prefix: src/mongo/db/modules
branch: v3.6
-- name: rocksdb
- repo: git@github.com:mongodb-partners/mongo-rocks.git
- prefix: src/mongo/db/modules
- branch: v3.6
-
#######################################
# Buildvariants #
#######################################
@@ -9086,28 +9065,6 @@ buildvariants:
- name: tool
- name: write_concern_majority_passthrough_WT
-- name: ubuntu1404-rocksdb
- display_name: Ubuntu 14.04 (RocksDB)
- modules:
- - rocksdb
- run_on:
- - ubuntu1404-test
- batchtime: 120960 # 12 weeks
- expansions:
- build_rocksdb: true
- compile_flags: -j$(grep -c ^processor /proc/cpuinfo) --dbg=off --opt=on CPPPATH=$(readlink -f ../rocksdb/include/) LIBPATH=$(readlink -f ../rocksdb/) LIBS=rocksdb --variables-files=etc/scons/mongodbtoolchain_gcc.vars --runtime-hardening=off
- num_jobs_available: $(grep -c ^processor /proc/cpuinfo)
- test_flags: --storageEngine=rocksdb
- use_scons_cache: true
- build_mongoreplay: true
- stepback: false
- tasks:
- - name: compile
- distros:
- - ubuntu1404-build
- - name: dbtest
- - name: jsCore
-
###########################################
# Experimental buildvariants #
###########################################