Skip to content

Commit

Permalink
Update README and remove macos-14 target
Browse files Browse the repository at this point in the history
  • Loading branch information
ssanj committed Jan 23, 2024
1 parent e6e83fe commit d3537c0
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [macos-12, macos-13, macos-14]
os: [macos-12, macos-13]
target: [
x86_64-apple-darwin,
]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [macos-12, macos-13, macos-14]
os: [macos-12, macos-13]
target: [
x86_64-apple-darwin,
]
Expand Down
24 changes: 19 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,15 @@ Reduce Cargo's compiler information output
Usage: quiet [OPTIONS] --items <ITEMS>
Options:
--items <ITEMS> The number of items to show. This includes errors and warnings to display. By default only errors are shown. Use --show-warnings to include warnings. Values range from 0 to 255
--items <ITEMS> The number of items to show. Values range from 0 to 255. This includes errors and warnings to display. By default only errors are shown. Use --show-warnings to include warnings
--show-warnings Flag to include warnings in the output
--file-filter <FILE_FILTER> The file (if any) to filter on. Example: --file-filter main.rs
-h, --help Print help information
--file-filter <FILE_FILTER> The file (if any) to filter on. Matches the file at the end of the path so you don't have to specify a full path. Example: --file-filter main.rs
-h, --help Print help information (use `--help` for more detail)
-V, --version Print version information
```

Cargo output should be passed to Quiet through the following format:


```
cargo check -q --message-format json-diagnostic-rendered-ansi 2>&1
```
Expand All @@ -47,11 +46,26 @@ cargo watch -x 'test --message-format json-diagnostic-rendered-ansi 2>&1 | quie

Also look at the [qcompile](https://github.com/ssanj/quiet/blob/main/qcompile), [qcompile-test](https://github.com/ssanj/quiet/blob/main/qcompile-test) and [qrun-test](https://github.com/ssanj/quiet/blob/main/qrun-test) sample scripts in this repository.

## Building
## Installation

### Building from source

Build Quiet with:

```
cargo build --release
```

Then copy `target/release/quiet` to a directory on your PATH.


### Downloading a release

Download the latest release for your platform from the [GitHub releases page](https://github.com/ssanj/quiet/releases).

Make it executable with:

`chmod +x <QUIET_EXEC>`

Copy executable to a directory on your path.

0 comments on commit d3537c0

Please sign in to comment.