|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
"use strict"; |
|
|
|
var os = require('os'); |
|
var fs = require('fs'); |
|
var path = require('path'); |
|
var cwd = process.cwd(); |
|
var debug = false; |
|
var bot; |
|
|
|
var modules = { |
|
sync: require('./sync') |
|
} |
|
|
|
module.exports = { |
|
setup: setup, |
|
modules: modules, |
|
userCommands: { |
|
runSync: { |
|
hdl: runSync, |
|
args: 0, |
|
help: 'runSync -- Run sync command ' |
|
} |
|
} |
|
}; |
|
|
|
function setup(nodeCiBot) { |
|
if (debug) console.log('dana-bot launched'); |
|
bot = nodeCiBot; |
|
} |
|
|
|
function runSync() { |
|
bot.startRun(1, startRunDone); |
|
|
|
function startRunDone(err) { |
|
if (err) { |
|
bot.endRun('error - cannot start - ' + err); |
|
return; |
|
} |
|
|
|
bot.start('sync'); |
|
|
|
bot.addAll(modules.sync, { |
|
action: 'sync' |
|
}); |
|
|
|
function syncEnd(series) { |
|
if (!bot.checkAllTestsPassing(series)) { |
|
hdl('sync failed', series); |
|
return; |
|
} |
|
bot.endRun('done'); |
|
} |
|
bot.end(syncEnd); |
|
} |
|
} |
|
|