Skip to content

Commit

Permalink
Revert "Bench hashset"
Browse files Browse the repository at this point in the history
This reverts commit 7d82b9f.
  • Loading branch information
ogxd committed Dec 12, 2023
1 parent 6fb90bb commit 94f7010
Showing 1 changed file with 25 additions and 25 deletions.
50 changes: 25 additions & 25 deletions .github/workflows/bench.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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:
Expand All @@ -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]>

0 comments on commit 94f7010

Please sign in to comment.