Skip to content

Commit

Permalink
Bump upload and download artifact versions (#528)
Browse files Browse the repository at this point in the history
  • Loading branch information
simonrouse9461 authored Dec 19, 2024
1 parent 27d90d1 commit 5265376
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/ci_build_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ jobs:
- run: cargo run --features report_tool --bin generate_cts_report ${{ env.CARGO_TEST_RESULT_NAME }} ${GITHUB_SHA} ${{ env.CONFORMANCE_REPORT_NAME }}
# Upload conformance report for comparison with future runs
- name: Upload conformance report
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
path: ${{ env.CONFORMANCE_REPORT_NAME }}
# Cache the `cargo build` and conformance report for `conformance-report-comparison` job (pull_request event only)
Expand Down Expand Up @@ -141,12 +141,9 @@ jobs:
# Download conformance report from target branch to create comparison report. If target branch has no conformance
# report, pull down target branch and rebuild conformance report.
- name: Download conformance report from target branch
uses: dawidd6/action-download-artifact@v2
uses: actions/download-artifact@v4
id: download-report
continue-on-error: true
with:
workflow: ci_build_test.yml
commit: ${{ github.event.pull_request.base.sha }}
# (If download of target branch report fails) Run the conformance tests (i.e. `cargo test`) and save to a JSON file.
- name: (If download of target branch conformance report fails) Checkout target branch
uses: actions/checkout@v3
Expand Down

1 comment on commit 5265376

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

PartiQL (rust) Benchmark

Benchmark suite Current: 5265376 Previous: 27d90d1 Ratio
arith_agg-avg 773932 ns/iter (± 6814) 762607 ns/iter (± 13004) 1.01
arith_agg-avg_distinct 855520 ns/iter (± 14896) 853107 ns/iter (± 13446) 1.00
arith_agg-count 818071 ns/iter (± 17412) 811102 ns/iter (± 52377) 1.01
arith_agg-count_distinct 849442 ns/iter (± 3507) 841861 ns/iter (± 9876) 1.01
arith_agg-min 822004 ns/iter (± 2424) 813170 ns/iter (± 11329) 1.01
arith_agg-min_distinct 853339 ns/iter (± 10328) 852586 ns/iter (± 13113) 1.00
arith_agg-max 828995 ns/iter (± 9784) 822112 ns/iter (± 18721) 1.01
arith_agg-max_distinct 861131 ns/iter (± 2886) 861600 ns/iter (± 12184) 1.00
arith_agg-sum 825237 ns/iter (± 2225) 817410 ns/iter (± 7116) 1.01
arith_agg-sum_distinct 855031 ns/iter (± 3639) 846422 ns/iter (± 17409) 1.01
arith_agg-avg-count-min-max-sum 976810 ns/iter (± 10710) 980679 ns/iter (± 11071) 1.00
arith_agg-avg-count-min-max-sum-group_by 1241180 ns/iter (± 6017) 1236545 ns/iter (± 41584) 1.00
arith_agg-avg-count-min-max-sum-group_by-group_as 1859476 ns/iter (± 33072) 1851597 ns/iter (± 26232) 1.00
arith_agg-avg_distinct-count_distinct-min_distinct-max_distinct-sum_distinct 1193405 ns/iter (± 6998) 1204575 ns/iter (± 13223) 0.99
arith_agg-avg_distinct-count_distinct-min_distinct-max_distinct-sum_distinct-group_by 1454080 ns/iter (± 7445) 1505227 ns/iter (± 11252) 0.97
arith_agg-avg_distinct-count_distinct-min_distinct-max_distinct-sum_distinct-group_by-group_as 2065311 ns/iter (± 6156) 2123329 ns/iter (± 20173) 0.97
parse-1 6171 ns/iter (± 25) 6002 ns/iter (± 642) 1.03
parse-15 51206 ns/iter (± 185) 50598 ns/iter (± 312) 1.01
parse-30 98373 ns/iter (± 273) 99235 ns/iter (± 404) 0.99
compile-1 4199 ns/iter (± 17) 4106 ns/iter (± 8) 1.02
compile-15 30584 ns/iter (± 224) 31139 ns/iter (± 601) 0.98
compile-30 63289 ns/iter (± 473) 63510 ns/iter (± 516) 1.00
plan-1 70864 ns/iter (± 345) 70176 ns/iter (± 215) 1.01
plan-15 1100699 ns/iter (± 48597) 1093985 ns/iter (± 9281) 1.01
plan-30 2205730 ns/iter (± 18177) 2187788 ns/iter (± 7953) 1.01
eval-1 12652855 ns/iter (± 173075) 12010339 ns/iter (± 71348) 1.05
eval-15 78722422 ns/iter (± 2049053) 76945710 ns/iter (± 1003377) 1.02
eval-30 149051556 ns/iter (± 679275) 147299495 ns/iter (± 1612420) 1.01
join 9873 ns/iter (± 216) 9927 ns/iter (± 160) 0.99
simple 2574 ns/iter (± 6) 2523 ns/iter (± 11) 1.02
simple-no 450 ns/iter (± 2) 482 ns/iter (± 2) 0.93
numbers 57 ns/iter (± 0) 57 ns/iter (± 0) 1
parse-simple 979 ns/iter (± 31) 953 ns/iter (± 5) 1.03
parse-ion 2666 ns/iter (± 8) 2703 ns/iter (± 8) 0.99
parse-group 7797 ns/iter (± 15) 7970 ns/iter (± 28) 0.98
parse-complex 20610 ns/iter (± 63) 20582 ns/iter (± 133) 1.00
parse-complex-fexpr 28041 ns/iter (± 137) 28121 ns/iter (± 160) 1.00

This comment was automatically generated by workflow using github-action-benchmark.

Please sign in to comment.