More precise startup benchmark

This commit is contained in:
Chocobozzz 2021-11-24 15:52:45 +01:00
parent 4ce5f50cd3
commit 0c5639f4f3
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
1 changed files with 6 additions and 6 deletions

View File

@ -90,15 +90,15 @@ jobs:
run: |
npm run clean:server:test
startCold=`date +%s`
startCold=`date +%s%3N`
NODE_APP_INSTANCE=1 NODE_ENV=test node dist/server --benchmark-startup
endCold=`date +%s`
coldStartupTime=$((endCold-startCold))
endCold=`date +%s%3N`
coldStartupTime=$(echo "scale=2; ($endCold-$startCold)/1000" | bc)
startHot=`date +%s`
startHot=`date +%s%3N`
NODE_APP_INSTANCE=1 NODE_ENV=test node dist/server --benchmark-startup
endHot=`date +%s`
hotStartupTime=$((endHot-startHot))
endHot=`date +%s%3N`
hotStartupTime=$(echo "scale=2; ($endHot-$startHot)/1000" | bc)
echo '{"coldStartupTime":'$coldStartupTime',"hotStartupTime":'$hotStartupTime'}'> startup-time.json