Skip to content

Commit ba1bac8

Browse files
committed
Adding syncRunner implementation
1 parent 2dd0748 commit ba1bac8

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

bin/helpers/syncRunner.js

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
'use strict';
2+
const config = require("./config"),
3+
logger = require("./logger").winstonLogger,
4+
Constants = require("./constants"),
5+
utils = require("./utils"),
6+
request = require('request');
7+
8+
exports.pollBuildStatus = (bsConfig, buildId) => {
9+
10+
logger.info(Constants.userMessages.BUILD_REPORT_MESSAGE);
11+
logger.info(`${config.dashboardUrl}${buildId}`);
12+
return 0;
13+
};

0 commit comments

Comments
 (0)