-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add basic README, update name, add gitignore.
- Loading branch information
1 parent
ce55f6f
commit bb8beba
Showing
3 changed files
with
52 additions
and
2 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 |
---|---|---|
@@ -0,0 +1,33 @@ | ||
#################### | ||
# Project specific # | ||
#################### | ||
# Nothing yet | ||
|
||
###################### | ||
# OS generated files # | ||
###################### | ||
# macoOS | ||
.DS_Store | ||
.DS_Store? | ||
.AppleDouble | ||
.LSOverride | ||
._* | ||
.Spotlight-V100 | ||
.Trashes | ||
Icon? | ||
|
||
# Windows | ||
Thumbs.db | ||
ehthumbs.db | ||
ehthumbs_vista.db | ||
*.stackdump | ||
[Dd]esktop.ini | ||
$RECYCLE.BIN/ | ||
*.lnk | ||
|
||
# Linux | ||
*~ | ||
.fuse_hidden* | ||
.directory | ||
.Trash-* | ||
.nfs* |
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 |
---|---|---|
@@ -1,2 +1,19 @@ | ||
# bloaty-action | ||
# Bloaty McBloatface GitHub Action | ||
|
||
GitHub Action to run Bloaty McBloatface: a size profiler for binaries | ||
|
||
```yaml | ||
- name: Run Bloaty McBloatface on an ELF file | ||
uses: carlosperate/bloaty-action@v0 | ||
with: | ||
bloaty-args: tests/test-elf-files/example-before.elf | ||
``` | ||
## Using the base Docker Image to run Bloaty McBloatface locally | ||
To diff two ELF files (from the project root directory): | ||
``` | ||
docker run --rm -v $(pwd):/home ghcr.io/carlosperate/bloaty:latest tests/test-elf-files/example-before.elf -- tests/test-elf-files/example-after.elf | ||
``` |
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