mirror of https://github.com/facebook/rocksdb.git
Parameterizing email id
Summary: Removing the leveldb@fb.com and making it a command line argument Test Plan: Manual test Reviewers: CC: leveldb@ Task ID: #6968635 Blame Rev:
This commit is contained in:
parent
c58bac701c
commit
e01f32cc3c
|
@ -2,6 +2,8 @@
|
||||||
# This script is executed by Sandcastle
|
# This script is executed by Sandcastle
|
||||||
# to determine next steps to run
|
# to determine next steps to run
|
||||||
|
|
||||||
|
EMAIL_ID=$2
|
||||||
|
|
||||||
#
|
#
|
||||||
# Helper variables
|
# Helper variables
|
||||||
#
|
#
|
||||||
|
@ -9,7 +11,7 @@ REPORT_EMAIL="'report': [
|
||||||
{
|
{
|
||||||
'type':'email',
|
'type':'email',
|
||||||
'triggers':['fail'],
|
'triggers':['fail'],
|
||||||
'emails':['leveldb@fb.com']
|
'emails':['$EMAIL_ID']
|
||||||
}
|
}
|
||||||
]"
|
]"
|
||||||
|
|
||||||
|
@ -20,7 +22,7 @@ CLEANUP_ENV="
|
||||||
'user':'root'
|
'user':'root'
|
||||||
}"
|
}"
|
||||||
|
|
||||||
ONCALL="'oncall':'leveldb@fb.com'"
|
ONCALL="'oncall':'$EMAIL_ID'"
|
||||||
DEBUG="OPT=-g"
|
DEBUG="OPT=-g"
|
||||||
SHM="TEST_TMPDIR=/dev/shm/rocksdb"
|
SHM="TEST_TMPDIR=/dev/shm/rocksdb"
|
||||||
GCC_481="ROCKSDB_FBCODE_BUILD_WITH_481=1"
|
GCC_481="ROCKSDB_FBCODE_BUILD_WITH_481=1"
|
||||||
|
|
Loading…
Reference in New Issue