Skip to content

Commit

Permalink
Minor fix to sandcastle java job definition
Browse files Browse the repository at this point in the history
Summary: System was not able to locate javac

Test Plan: Run command manually and observe output

Subscribers: andrewkr, dhruba, leveldb

Differential Revision: https://reviews.facebook.net/D56709
  • Loading branch information
krad committed Apr 13, 2016
1 parent 1aeca97 commit 09be5ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build_tools/rocksdb-lego-determinator
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ LITE="OPT=-DROCKSDB_LITE"
TSAN="COMPILE_WITH_TSAN=1"
UBSAN="COMPILE_WITH_UBSAN=1"
DISABLE_JEMALLOC="DISABLE_JEMALLOC=1"
JDK="JAVA_HOME=/usr/local/jdk-7u10-64/"
SETUP_JDK="export JAVA_HOME=/usr/local/jdk-7u10-64/; export PATH=\$PATH:\$JAVA_HOME/bin"
PARSER="'parser':'egrep \'Failure|^#|Abort|Expected|Actual|GoogleTestFailure|^==\''"

ARTIFACTS=" 'artifacts': [
Expand Down Expand Up @@ -647,7 +647,7 @@ JAVA_BUILD_TEST_COMMANDS="[
$CLEANUP_ENV,
{
'name':'Build RocksDB for Java',
'shell':'$JDK $SHM `fwdproxy-config --format=sh curl` make rocksdbjava',
'shell':'$SETUP_JDK; $SHM `fwdproxy-config --format=sh curl` make rocksdbjava',
'user':'root',
$PARSER
},
Expand Down

0 comments on commit 09be5ca

Please sign in to comment.