-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This reverts commit 7d82b9f.
- Loading branch information
Showing
1 changed file
with
25 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,7 @@ jobs: | |
- uses: actions/checkout@v4 | ||
|
||
- name: Benchmark | ||
run: cargo bench --bench hashset --features bench-plot | ||
run: cargo bench --bench throughput --features bench-plot | ||
|
||
- uses: actions/upload-artifact@v3 | ||
with: | ||
|
@@ -33,7 +33,7 @@ jobs: | |
run: rustup default nightly | ||
|
||
- name: Benchmark | ||
run: cargo bench --bench hashset --features bench-plot | ||
run: cargo bench --bench throughput --features bench-plot | ||
|
||
- uses: actions/upload-artifact@v3 | ||
with: | ||
|
@@ -48,36 +48,36 @@ jobs: | |
- uses: actions/checkout@v4 | ||
|
||
- name: Benchmark | ||
run: cargo bench --bench hashset --features bench-plot | ||
run: cargo bench --bench throughput --features bench-plot | ||
|
||
- uses: actions/upload-artifact@v3 | ||
with: | ||
name: benches | ||
path: benches/throughput/aarch64.svg | ||
|
||
# commit: | ||
# name: Commit & Push | ||
# runs-on: buildjet-2vcpu-ubuntu-2204 | ||
# needs: [benchmark-x86, benchmark-x86-avx2, benchmark-arm] | ||
commit: | ||
name: Commit & Push | ||
runs-on: buildjet-2vcpu-ubuntu-2204 | ||
needs: [benchmark-x86, benchmark-x86-avx2, benchmark-arm] | ||
|
||
# permissions: | ||
# contents: write | ||
permissions: | ||
contents: write | ||
|
||
# steps: | ||
# - uses: actions/checkout@v4 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
# - name: Download Benchmark Results | ||
# uses: actions/download-artifact@v3 | ||
# with: | ||
# name: benches | ||
# path: benches/throughput | ||
|
||
# - name: Commit & Push Benchmark Results | ||
# uses: stefanzweifel/git-auto-commit-action@v5 | ||
# with: | ||
# file_pattern: '*.svg' | ||
# commit_message: Update Benchmark Results | ||
# commit_user_name: Benchmark Bot | ||
# commit_user_email: [email protected] | ||
# commit_author: Benchmark Bot <[email protected]> | ||
- name: Download Benchmark Results | ||
uses: actions/download-artifact@v3 | ||
with: | ||
name: benches | ||
path: benches/throughput | ||
|
||
- name: Commit & Push Benchmark Results | ||
uses: stefanzweifel/git-auto-commit-action@v5 | ||
with: | ||
file_pattern: '*.svg' | ||
commit_message: Update Benchmark Results | ||
commit_user_name: Benchmark Bot | ||
commit_user_email: [email protected] | ||
commit_author: Benchmark Bot <[email protected]> | ||
|