Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI: publish benchmarks log as artifact #44464

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:
git remote add upstream https://github.com/pandas-dev/pandas.git
git fetch upstream
asv machine --yes
asv dev | sed "/failed$/ s/^/##[error]/" | tee benchmarks.log
asv run --quick --show-stderr --python=same --set-commit-hash HEAD | sed "/failed$/ s/^/##[error]/" | tee benchmarks.log
lithomas1 marked this conversation as resolved.
Show resolved Hide resolved
if grep "failed" benchmarks.log > /dev/null ; then
exit 1
fi
Expand All @@ -94,8 +94,9 @@ jobs:
uses: actions/upload-artifact@master
with:
name: Benchmarks log
path: asv_bench/benchmarks.log
if: failure()
path: |
asv_bench/benchmarks.log
asv_bench/results/*/HEAD_*.json

web_and_docs:
name: Web and docs
Expand Down