Skip to content

Commit

Permalink
Use BenchmarkCI.pushresult (#320)
Browse files Browse the repository at this point in the history
  • Loading branch information
tkf committed Jun 30, 2020
1 parent 8ccb586 commit 391f3fb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ jobs:
);
);
'
- name: Post results
run: julia -e "using BenchmarkCI; BenchmarkCI.postjudge()"
- name: Push results
run: julia -e 'using BenchmarkCI; BenchmarkCI.pushresult()'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SSH_KEY: ${{ secrets.SSH_KEY }}
5 changes: 3 additions & 2 deletions .github/workflows/multi-thread-benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,11 @@ jobs:
project = "benchmark",
);
'
- name: Post results
- name: Push results
run: julia -e '
using BenchmarkCI;
BenchmarkCI.postjudge(title = "Multi-thread benchmark result")
BenchmarkCI.pushresult(title = "Multi-thread benchmark result");
'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SSH_KEY: ${{ secrets.SSH_KEY }}

0 comments on commit 391f3fb

Please sign in to comment.