Skip to content

Commit cada5af

Browse files
authored
pandas_20250108 (#29)
1 parent 6f95595 commit cada5af

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

.github/workflows/run_asvs.yaml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ env:
1212
# Results and other data are stored away from the main branch.
1313
# This keeps the main branch clean and allows us to clear out
1414
# objects / history after being built up for long periods of time.
15-
BRANCH_NAME: test
15+
BRANCH_NAME: pandas_20250108
1616

1717
permissions:
1818
contents: read
@@ -83,8 +83,16 @@ jobs:
8383
run: |
8484
cd asv_bench
8585
asv machine --machine=asvrunner --yes
86-
asv run --machine=asvrunner --python=same --set-commit-hash=$(git rev-parse HEAD) -b ^groupby
86+
asv run --machine=asvrunner --python=same --set-commit-hash=$(git rev-parse HEAD)
87+
88+
- name: Publish ASV Benchmarks
89+
if: ${{ steps.new-commit.outputs.new_commit == 'yes' }}
90+
run: |
8791
asv publish
92+
93+
- name: Move files
94+
if: ${{ steps.new-commit.outputs.new_commit == 'yes' }}
95+
run: |
8896
# Move results to a fixed location
8997
cp results/benchmarks.json benchmarks.json
9098
cp results/asvrunner/$(git rev-parse --short=8 HEAD)*.json results.json

0 commit comments

Comments
 (0)