Benchmarks gitlab #64
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
name: Benchmarks gitlab | |
on: | |
schedule: | |
- cron: "0 5 * * *" | |
jobs: | |
bench: | |
name: Benchmarks gitlab | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Sources | |
uses: actions/checkout@v3.5.2 | |
with: | |
fetch-depth: 0 | |
ref: "gh-pages" | |
- name: Install Rust nightly toolchain | |
uses: actions-rs/toolchain@v1.0.7 | |
with: | |
profile: minimal | |
toolchain: nightly | |
override: true | |
- name: Rust Cache | |
uses: Swatinem/rust-cache@v2.3.0 | |
- name: Copy bench results | |
id: step_one | |
run: | | |
cp bench/gitlab/output.txt output.txt | |
- name: Switch branch | |
id: step_two | |
run: | | |
git checkout master | |
- name: Store benchmark result | |
uses: rhysd/github-action-benchmark@v1 | |
with: | |
tool: "cargo" | |
output-file-path: "output.txt" | |
benchmark-data-dir-path: "bench/dev2" | |
fail-on-alert: true | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
comment-on-alert: true | |
alert-comment-cc-users: '@niklasad1' | |
auto-push: true |