PeerTube/.github/workflows/benchmark.yml

89 lines
2.4 KiB
YAML
Raw Normal View History

2021-02-23 09:44:40 +01:00
name: Benchmark
on:
push:
branches:
- ci
schedule:
2021-02-24 14:01:00 +01:00
- cron: '0 */12 * * *'
2021-02-23 09:44:40 +01:00
jobs:
test:
runs-on: ubuntu-latest
services:
redis:
image: redis
ports:
- 6379:6379
postgres:
image: postgres:9.6
ports:
- 5432:5432
env:
POSTGRES_USER: peertube
POSTGRES_HOST_AUTH_METHOD: trust
env:
PGUSER: peertube
PGHOST: localhost
steps:
2022-06-27 15:28:32 +02:00
- uses: actions/checkout@v3
2021-02-23 09:44:40 +01:00
2021-12-01 14:14:58 +01:00
- uses: './.github/actions/reusable-prepare-peertube-build'
2021-02-23 09:44:40 +01:00
with:
2023-05-09 10:00:52 +02:00
node-version: '16.x'
2021-02-23 09:44:40 +01:00
2021-12-01 14:14:58 +01:00
- uses: './.github/actions/reusable-prepare-peertube-run'
2021-02-23 09:44:40 +01:00
- name: Build
run: |
startClient=`date +%s`
npm run build:client
endClient=`date +%s`
clientBuildTime=$((endClient-startClient))
startServer=`date +%s`
npm run build:server
endServer=`date +%s`
serverBuildTime=$((endServer-startServer))
echo '{"clientBuildTime":'$clientBuildTime',"serverBuildTime":'$serverBuildTime'}'> build-time.json
2021-11-22 15:50:54 +01:00
- name: Startup
run: |
2021-11-22 15:54:08 +01:00
npm run clean:server:test
2021-11-22 15:50:54 +01:00
2021-11-24 15:52:45 +01:00
startCold=`date +%s%3N`
2021-11-22 15:50:54 +01:00
NODE_APP_INSTANCE=1 NODE_ENV=test node dist/server --benchmark-startup
2021-11-24 15:52:45 +01:00
endCold=`date +%s%3N`
coldStartupTime=$(echo "scale=2; ($endCold-$startCold)/1000" | bc)
2021-11-22 15:50:54 +01:00
2021-11-24 15:52:45 +01:00
startHot=`date +%s%3N`
2021-11-22 15:50:54 +01:00
NODE_APP_INSTANCE=1 NODE_ENV=test node dist/server --benchmark-startup
2021-11-24 15:52:45 +01:00
endHot=`date +%s%3N`
hotStartupTime=$(echo "scale=2; ($endHot-$startHot)/1000" | bc)
2021-11-22 15:50:54 +01:00
echo '{"coldStartupTime":'$coldStartupTime',"hotStartupTime":'$hotStartupTime'}'> startup-time.json
2021-02-23 09:44:40 +01:00
- name: Run benchmark
run: |
2022-02-28 15:19:44 +01:00
node dist/scripts/benchmark.js -o benchmark.json
2021-02-23 09:44:40 +01:00
- name: Display result
run: |
2021-11-22 15:50:54 +01:00
cat benchmark.json build-time.json startup-time.json
2021-02-23 09:44:40 +01:00
- name: Upload benchmark result
2021-12-03 13:35:23 +01:00
uses: './.github/actions/reusable-deploy'
2021-12-01 14:14:58 +01:00
with:
source: benchmark.json build-time.json startup-time.json
destination: peertube-stats
knownHosts: ${{ secrets.STATS_DEPLOYEMENT_KNOWN_HOSTS }}
deployKey: ${{ secrets.STATS_DEPLOYEMENT_KEY }}
deployUser: ${{ secrets.STATS_DEPLOYEMENT_USER }}
deployHost: ${{ secrets.STATS_DEPLOYEMENT_HOST }}