Skip to content

Commit

Permalink
Switch release action to ncipollo (#1489)
Browse files Browse the repository at this point in the history
  • Loading branch information
jleibs committed Mar 3, 2023
1 parent a5ef3e6 commit 2a73bfc
Showing 1 changed file with 13 additions and 9 deletions.
22 changes: 13 additions & 9 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -290,17 +290,20 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

# Create the actual prerelease
# https://github.com/softprops/action-gh-release
# https://github.com/ncipollo/release-action
- name: GitHub Release
uses: softprops/action-gh-release@v0.1.15
uses: ncipollo/release-action@v1.12.0
with:
name: "Development Build"
body: ${{ env.PRE_RELEASE_INSTRUCTIONS }}
prerelease: true
tag_name: prerelease
files: dist/*
artifacts: dist/*
name: "Development Build"
tag: "prerelease"
token: ${{ secrets.GITHUB_TOKEN }}
generate_release_notes: true
generateReleaseNotes: true
allowUpdates: true
removeArtifacts: true
replacesArtifacts: true

# ---------------------------------------------------------------------------

Expand All @@ -317,13 +320,14 @@ jobs:
name: wheels
path: dist

# https://github.com/ncipollo/release-action
- name: GitHub Release
uses: softprops/action-gh-release@v0.1.15
uses: ncipollo/release-action@v1.12.0
with:
prerelease: false
files: dist/*
artifacts: dist/*
token: ${{ secrets.GITHUB_TOKEN }}
generate_release_notes: true
generateReleaseNotes: true

- name: Publish to PyPI
uses: PyO3/maturin-action@v1
Expand Down

1 comment on commit 2a73bfc

@github-actions
Copy link

Choose a reason for hiding this comment

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

Rust Benchmark

Benchmark suite Current: 2a73bfc Previous: 15b04f7 Ratio
datastore/insert/batch/rects/insert 565168 ns/iter (± 1877) 552675 ns/iter (± 5415) 1.02
datastore/latest_at/batch/rects/query 1804 ns/iter (± 5) 1791 ns/iter (± 44) 1.01
datastore/latest_at/missing_components/primary 355 ns/iter (± 0) 352 ns/iter (± 3) 1.01
datastore/latest_at/missing_components/secondaries 428 ns/iter (± 0) 414 ns/iter (± 5) 1.03
datastore/range/batch/rects/query 152456 ns/iter (± 814) 148148 ns/iter (± 2126) 1.03
mono_points_arrow/generate_message_bundles 49064975 ns/iter (± 806644) 48540804 ns/iter (± 1639182) 1.01
mono_points_arrow/generate_messages 135449236 ns/iter (± 1159893) 133700897 ns/iter (± 1448998) 1.01
mono_points_arrow/encode_log_msg 165556376 ns/iter (± 647784) 165762094 ns/iter (± 665203) 1.00
mono_points_arrow/encode_total 353700751 ns/iter (± 1912123) 349625763 ns/iter (± 12697724) 1.01
mono_points_arrow/decode_log_msg 187230488 ns/iter (± 976768) 183407635 ns/iter (± 1894892) 1.02
mono_points_arrow/decode_message_bundles 71706122 ns/iter (± 955326) 69609347 ns/iter (± 1265075) 1.03
mono_points_arrow/decode_total 258693886 ns/iter (± 2438180) 257745935 ns/iter (± 5186250) 1.00
batch_points_arrow/generate_message_bundles 332332 ns/iter (± 558) 332244 ns/iter (± 2442) 1.00
batch_points_arrow/generate_messages 6258 ns/iter (± 20) 6176 ns/iter (± 56) 1.01
batch_points_arrow/encode_log_msg 357649 ns/iter (± 583) 355780 ns/iter (± 3017) 1.01
batch_points_arrow/encode_total 712625 ns/iter (± 1627) 714285 ns/iter (± 4300) 1.00
batch_points_arrow/decode_log_msg 349032 ns/iter (± 504) 350097 ns/iter (± 1699) 1.00
batch_points_arrow/decode_message_bundles 2068 ns/iter (± 7) 2038 ns/iter (± 19) 1.01
batch_points_arrow/decode_total 355541 ns/iter (± 982) 356988 ns/iter (± 1520) 1.00
arrow_mono_points/insert 6972401497 ns/iter (± 39579228) 6914333583 ns/iter (± 18078496) 1.01
arrow_mono_points/query 1774283 ns/iter (± 9050) 1736962 ns/iter (± 19831) 1.02
arrow_batch_points/insert 2680902 ns/iter (± 8792) 2681488 ns/iter (± 115599) 1.00
arrow_batch_points/query 16104 ns/iter (± 19) 16002 ns/iter (± 21) 1.01
arrow_batch_vecs/insert 41778 ns/iter (± 84) 42002 ns/iter (± 237) 0.99
arrow_batch_vecs/query 506173 ns/iter (± 389) 506297 ns/iter (± 945) 1.00
tuid/Tuid::random 34 ns/iter (± 0) 34 ns/iter (± 0) 1

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

Please sign in to comment.