-
Notifications
You must be signed in to change notification settings - Fork 499
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
chore: add codspeed for benchmark #4993
Changes from 2 commits
c7f0c2d
99a90db
a718e1a
749254e
84c474b
65ad147
9481839
9cc4030
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,56 @@ | ||||||||||||||||||||||||||||||||||
# Licensed to the Apache Software Foundation (ASF) under one | ||||||||||||||||||||||||||||||||||
# or more contributor license agreements. See the NOTICE file | ||||||||||||||||||||||||||||||||||
# distributed with this work for additional information | ||||||||||||||||||||||||||||||||||
# regarding copyright ownership. The ASF licenses this file | ||||||||||||||||||||||||||||||||||
# to you under the Apache License, Version 2.0 (the | ||||||||||||||||||||||||||||||||||
# "License"); you may not use this file except in compliance | ||||||||||||||||||||||||||||||||||
# with the License. You may obtain a copy of the License at | ||||||||||||||||||||||||||||||||||
# | ||||||||||||||||||||||||||||||||||
# http://www.apache.org/licenses/LICENSE-2.0 | ||||||||||||||||||||||||||||||||||
# | ||||||||||||||||||||||||||||||||||
# Unless required by applicable law or agreed to in writing, | ||||||||||||||||||||||||||||||||||
# software distributed under the License is distributed on an | ||||||||||||||||||||||||||||||||||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||||||||||||||||||||||||||||||||||
# KIND, either express or implied. See the License for the | ||||||||||||||||||||||||||||||||||
# specific language governing permissions and limitations | ||||||||||||||||||||||||||||||||||
# under the License. | ||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
name: Benchmark Test | ||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
on: | ||||||||||||||||||||||||||||||||||
push: | ||||||||||||||||||||||||||||||||||
branches: | ||||||||||||||||||||||||||||||||||
- main | ||||||||||||||||||||||||||||||||||
pull_request: | ||||||||||||||||||||||||||||||||||
branches: | ||||||||||||||||||||||||||||||||||
- main | ||||||||||||||||||||||||||||||||||
paths: | ||||||||||||||||||||||||||||||||||
- "core/src/**" | ||||||||||||||||||||||||||||||||||
- "core/benches/**" | ||||||||||||||||||||||||||||||||||
- "!core/src/docs/**" | ||||||||||||||||||||||||||||||||||
- ".github/workflows/test_benchmark.yml" | ||||||||||||||||||||||||||||||||||
# `workflow_dispatch` is needed by codspeed for first time trigger | ||||||||||||||||||||||||||||||||||
workflow_dispatch: | ||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
concurrency: | ||||||||||||||||||||||||||||||||||
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }} | ||||||||||||||||||||||||||||||||||
cancel-in-progress: true | ||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
jobs: | ||||||||||||||||||||||||||||||||||
benchmark: | ||||||||||||||||||||||||||||||||||
runs-on: ubuntu-latest | ||||||||||||||||||||||||||||||||||
steps: | ||||||||||||||||||||||||||||||||||
- uses: actions/checkout@v4 | ||||||||||||||||||||||||||||||||||
- name: Setup Rust toolchain | ||||||||||||||||||||||||||||||||||
uses: ./.github/actions/setup | ||||||||||||||||||||||||||||||||||
- name: Setup codspeed | ||||||||||||||||||||||||||||||||||
run: cargo install cargo-codspeed | ||||||||||||||||||||||||||||||||||
- name: Setup Memory env | ||||||||||||||||||||||||||||||||||
uses: ./.github/services/memory/memory | ||||||||||||||||||||||||||||||||||
- name: Build the benchmark targets | ||||||||||||||||||||||||||||||||||
run: cargo codspeed build --features tests | ||||||||||||||||||||||||||||||||||
- name: Run the benchmarks | ||||||||||||||||||||||||||||||||||
uses: CodSpeedHQ/action@v3 | ||||||||||||||||||||||||||||||||||
with: | ||||||||||||||||||||||||||||||||||
run: cargo codspeed run | ||||||||||||||||||||||||||||||||||
token: ${{ secrets.CODSPEED_TOKEN }} | ||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @Xuanwo I have a new idea for not directly modifying files under Only modify the github action, and not directly modifying the source code. That way, the code would only be modified during the actual action run.
Suggested change
Would that meet your requirements? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Hi, that looks good to me! |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please load from 1password.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Will use 1password after I get the token. Thanks for the review.