benchmarks: cumulative output
This commit is contained in:
parent
857a6ab50d
commit
e5e7e8d392
1 changed files with 17 additions and 4 deletions
21
.github/workflows/benchmark.yml
vendored
21
.github/workflows/benchmark.yml
vendored
|
@ -71,8 +71,21 @@ jobs:
|
||||||
RUN_COUNT: 10
|
RUN_COUNT: 10
|
||||||
ELECTRON_ENABLE_STACK_DUMPING: on
|
ELECTRON_ENABLE_STACK_DUMPING: on
|
||||||
|
|
||||||
- name: Upload benchmark log
|
- name: Clone benchmark branch
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/checkout@v2
|
||||||
with:
|
with:
|
||||||
name: benchmark.log
|
repository: 'signalapp/Signal-Desktop-Benchmarks-Private'
|
||||||
path: benchmark.log
|
path: 'benchmark-results'
|
||||||
|
token: ${{ secrets.AUTOMATED_GITHUB_PAT }}
|
||||||
|
|
||||||
|
- name: Push benchmark branch
|
||||||
|
working-directory: benchmark-results
|
||||||
|
run: |
|
||||||
|
npm ci
|
||||||
|
node ./bin/collect.js ../benchmark.log data.json
|
||||||
|
npm run build
|
||||||
|
git config --global user.email "no-reply@signal.org"
|
||||||
|
git config --global user.name "Signal Bot"
|
||||||
|
git add .
|
||||||
|
git commit --message "${GITHUB_REF} ${GITHUB_SHA}"
|
||||||
|
git push --force origin main
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue