Compare commits

..

No commits in common. "353b78e688ddffd86540bf336b52568499f980ec" and "75132ff17239b2778ee1e36308a6b011579400e6" have entirely different histories.

3 changed files with 29 additions and 23 deletions

View file

@ -33,17 +33,25 @@ jobs:
run: cargo install hotpath run: cargo install hotpath
- name: Post timing comparison comment - name: Post timing comparison comment
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: | run: |
hotpath profile-pr \ hotpath profile-pr \
--head-metrics head-timing.json \ --repo ${{ github.repository }} \
--base-metrics base-timing.json \ --pr-number ${{ steps.pr.outputs.number }} \
--github-token ${{ secrets.GITHUB_TOKEN }} \ --head-json head-timing.json \
--pr-number ${{ steps.pr.outputs.number }} --base-json base-timing.json \
--mode timing \
--title "⏱️ Hotpath Timing Profile"
- name: Post allocation comparison comment - name: Post allocation comparison comment
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: | run: |
hotpath profile-pr \ hotpath profile-pr \
--head-metrics head-alloc.json \ --repo ${{ github.repository }} \
--base-metrics base-alloc.json \ --pr-number ${{ steps.pr.outputs.number }} \
--github-token ${{ secrets.GITHUB_TOKEN }} \ --head-json head-alloc.json \
--pr-number ${{ steps.pr.outputs.number }} --base-json base-alloc.json \
--mode alloc \
--title "📊 Hotpath Allocation Profile"

View file

@ -43,7 +43,7 @@ on your system: it is pretty _[fast](#benchmarks)_...
- Fast - Fast
- Really fast - Really fast
- Minimal dependencies - Minimal dependencies
- Tiny binary (~370kb) - Tiny binary (~410kb)
- Actually really fast - Actually really fast
- Cool NixOS logo (other, inferior, distros are not supported) - Cool NixOS logo (other, inferior, distros are not supported)
- Reliable detection of following info: - Reliable detection of following info:
@ -160,8 +160,7 @@ performance regressions.
> [!NOTE] > [!NOTE]
> You will need a Nerdfonts patched font installed, and for your terminal > You will need a Nerdfonts patched font installed, and for your terminal
> emulator to support said font. Microfetch uses nerdfonts glyphs by default, > emulator to support said font. Microfetch uses nerdfonts glyphs by default.
> but this can be changed by [patching the program](#customizing).
Microfetch is packaged in [nixpkgs](https://github.com/nixos/nixpkgs). It can be Microfetch is packaged in [nixpkgs](https://github.com/nixos/nixpkgs). It can be
installed by adding `pkgs.microfetch` to your `environment.systemPackages`. installed by adding `pkgs.microfetch` to your `environment.systemPackages`.

View file

@ -20,7 +20,6 @@ in
(fs.fileFilter (file: builtins.any file.hasExt ["rs"]) (s + /src)) (fs.fileFilter (file: builtins.any file.hasExt ["rs"]) (s + /src))
(s + /Cargo.lock) (s + /Cargo.lock)
(s + /Cargo.toml) (s + /Cargo.toml)
(s + /benches)
]; ];
}; };