-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
github: action: Save cache data to gh-page
- Loading branch information
1 parent
38382b2
commit be09825
Showing
1 changed file
with
49 additions
and
0 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 |
---|---|---|
|
@@ -43,6 +43,55 @@ jobs: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
publish_dir: ./pages | ||
|
||
bench: | ||
needs: build | ||
runs-on: raspbian-armv7-kernel-5.10.33 | ||
steps: | ||
- uses: actions/checkout@master | ||
- uses: actions-rs/[email protected] | ||
with: | ||
toolchain: stable | ||
override: true | ||
- name: Rust | Cache | ||
uses: Swatinem/rust-cache@v2 | ||
with: | ||
prefix-key: "rust-cache" | ||
shared-key: "benchmark" | ||
- name: Cargo Bench | ||
run: cargo bench --jobs 1 --bench bench -- --output-format bencher | tee output.txt | ||
- name: Compare results & store cached results | ||
uses: benchmark-action/[email protected] | ||
with: | ||
tool: 'cargo' | ||
output-file-path: output.txt | ||
summary-always: true | ||
alert-threshold: "110%" | ||
fail-on-alert: true | ||
external-data-json-path: ./cache/benchmark-data.json | ||
skip-fetch-gh-pages: "true" | ||
- name: Update data file | ||
if: ${{ github.ref == 'refs/heads/master' }} | ||
run: | | ||
git config user.name "GitHub Actions Bot" | ||
git config user.email "[email protected]" | ||
git fetch origin gh-pages | ||
git checkout gh-pages | ||
if [ ! -d "dev/cache" ]; then | ||
echo "Cache folder does not exist, creating it" | ||
mkdir -p dev/cache | ||
fi | ||
cp cache/benchmark-data.json dev/cache/benchmark-data.json | ||
tree cache | ||
git add dev/cache/benchmark-data.json | ||
git commit -m "Update benchmark-data file" | ||
git push origin gh-pages | ||
deploy: | ||
needs: build | ||
runs-on: ubuntu-latest | ||
|