Skip to content

Commit

Permalink
Add basic README, update name, add gitignore.
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosperate committed Jan 30, 2023
1 parent ce55f6f commit bb8beba
Show file tree
Hide file tree
Showing 3 changed files with 52 additions and 2 deletions.
33 changes: 33 additions & 0 deletions .gitignore
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*
19 changes: 18 additions & 1 deletion README.md
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
```
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: bloaty
name: bloaty-action
description: "GitHub Action to run Bloaty McBloatface: a size profiler for binaries"
author: Carlos Pereira Atencio
branding:
Expand Down

0 comments on commit bb8beba

Please sign in to comment.