Compare commits
5 commits
Author | SHA1 | Date | |
---|---|---|---|
8f3faed11f | |||
95e94b38cc | |||
562ade9763 | |||
5b6b1b0a58 | |||
fa38c2928b |
3 changed files with 7 additions and 2 deletions
|
@ -7,12 +7,14 @@ export function run(http, orgPort, ctx) {
|
||||||
let packageInfo = JSON.parse(readFileSync(packagePath))
|
let packageInfo = JSON.parse(readFileSync(packagePath))
|
||||||
|
|
||||||
const server = http.createServer(function (req, res) {
|
const server = http.createServer(function (req, res) {
|
||||||
|
const d1 = new Date().getTime()
|
||||||
let finishedRequest = false
|
let finishedRequest = false
|
||||||
var done = function () {
|
var done = function () {
|
||||||
if (finishedRequest) return
|
if (finishedRequest) return
|
||||||
finishedRequest = true
|
finishedRequest = true
|
||||||
|
var requestTime = new Date().getTime() - d1
|
||||||
|
|
||||||
let level = 'debug'
|
let level = 'info'
|
||||||
if (res.statusCode >= 400) {
|
if (res.statusCode >= 400) {
|
||||||
level = 'warn'
|
level = 'warn'
|
||||||
}
|
}
|
||||||
|
|
|
@ -60,6 +60,9 @@ on_success:
|
||||||
-H "Authorization: token $deploytoken" \
|
-H "Authorization: token $deploytoken" \
|
||||||
-F "attachment=@${CURR_VER}_build-sc.7z" \
|
-F "attachment=@${CURR_VER}_build-sc.7z" \
|
||||||
https://git.nfp.is/api/v1/repos/$APPVEYOR_REPO_NAME/releases/$RELEASE_ID/assets
|
https://git.nfp.is/api/v1/repos/$APPVEYOR_REPO_NAME/releases/$RELEASE_ID/assets
|
||||||
|
|
||||||
|
echo "Deplying to production"
|
||||||
|
curl -X POST http://192.168.93.51:8881/update/helloworld
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# on build failure
|
# on build failure
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "sc-helloworld",
|
"name": "sc-helloworld",
|
||||||
"version": "2.0.3",
|
"version": "2.0.6",
|
||||||
"description": "Hello World app for service core",
|
"description": "Hello World app for service core",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
Loading…
Reference in a new issue