Skip to content

Commit

Permalink
Documenting pyinstaller usage
Browse files Browse the repository at this point in the history
  • Loading branch information
ALLARD Antoine committed May 23, 2023
1 parent ee5ba1b commit 6ef1e51
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,16 @@ ValgrindCI uses the `setuptools` to build its package which can then be installe
> pip install ValgrindCI --no-index -f dist
```

#### Build and package an executable with `pyinstaller`

You can use `pyinstaller` to create a single-file executable binary:

```bash
> pip install pyinstaller
> pyinstaller --onefile --add-data ValgrindCI:ValgrindCI valgrind-ci
> ./dist/valgrind-ci --help
```

## How to use

ValgrindCI is a command tool designed to be executed within jobs of your favorite Continuous Integration platform. It parses the XML output of valgrind to provide its services.
Expand Down

0 comments on commit 6ef1e51

Please sign in to comment.