|
|
@ -299,11 +299,21 @@ function getSandcastleConfig() { |
|
|
|
); |
|
|
|
); |
|
|
|
|
|
|
|
|
|
|
|
// Submit to Sandcastle. |
|
|
|
// Submit to Sandcastle. |
|
|
|
$url = 'https://interngraph.intern.facebook.com/sandcastle/generate?' |
|
|
|
$url = 'https://interngraph.intern.facebook.com/sandcastle/create'; |
|
|
|
.'command=SandcastleUniversalCommand' |
|
|
|
|
|
|
|
.'&vcs=rocksdb-int-git&revision=origin%2Fmaster&type=lego' |
|
|
|
$job = array( |
|
|
|
.'&user=' . $username . '&alias=rocksdb-precommit' |
|
|
|
'command' => 'SandcastleUniversalCommand', |
|
|
|
.'&command-args=' . urlencode(json_encode($command)); |
|
|
|
'args' => $command, |
|
|
|
|
|
|
|
'capabilities' => array( |
|
|
|
|
|
|
|
'vcs' => 'rocksdb-int-git', |
|
|
|
|
|
|
|
'type' => 'lego', |
|
|
|
|
|
|
|
), |
|
|
|
|
|
|
|
'hash' => 'origin/master', |
|
|
|
|
|
|
|
'user' => $username, |
|
|
|
|
|
|
|
'alias' => 'rocksdb-precommit', |
|
|
|
|
|
|
|
'tags' => array('rocksdb'), |
|
|
|
|
|
|
|
'description' => 'Rocksdb precommit job', |
|
|
|
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
|
|
// Fetch the configuration necessary to submit a successful HTTPS request. |
|
|
|
// Fetch the configuration necessary to submit a successful HTTPS request. |
|
|
|
$sandcastle_config = getSandcastleConfig(); |
|
|
|
$sandcastle_config = getSandcastleConfig(); |
|
|
@ -312,7 +322,8 @@ function getSandcastleConfig() { |
|
|
|
$token = $sandcastle_config[1]; |
|
|
|
$token = $sandcastle_config[1]; |
|
|
|
|
|
|
|
|
|
|
|
$cmd = 'curl -s -k -F app=' . $app . ' ' |
|
|
|
$cmd = 'curl -s -k -F app=' . $app . ' ' |
|
|
|
. '-F token=' . $token . ' "' . $url . '"'; |
|
|
|
. '-F token=' . $token . ' -F job=\'' . json_encode($job) |
|
|
|
|
|
|
|
.'\' "' . $url . '"'; |
|
|
|
|
|
|
|
|
|
|
|
$output = shell_exec($cmd); |
|
|
|
$output = shell_exec($cmd); |
|
|
|
assert(strlen($output) > 0); |
|
|
|
assert(strlen($output) > 0); |
|
|
|