Skip to content

Commit

Permalink
(Feat): Add tool grpcui (#887)
Browse files Browse the repository at this point in the history
Add tool [grpcui](https://github.com/fullstorydev/grpcui). It's
available as a download or go install, but a download here allows us to
query for latest
  • Loading branch information
TylerJang27 authored Oct 11, 2024
1 parent d1236dc commit 7f05488
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tools/grpcui/grpcui.test.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import { toolInstallTest } from "tests";

toolInstallTest({
toolName: "grpcui",
toolVersion: "1.4.1",
});
26 changes: 26 additions & 0 deletions tools/grpcui/plugin.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
version: 0.1
downloads:
- name: grpcui
downloads:
- os:
linux: linux
macos: osx
cpu:
x86_64: x86_64
arm_64: arm64
url: https://github.com/fullstorydev/grpcui/releases/download/v${version}/grpcui_${version}_${os}_${cpu}.tar.gz
- os:
windows: windows
cpu:
x86_64: amd64
url: https://github.com/fullstorydev/grpcui/releases/download/v${version}/grpcui_${version}_windows_x86_64.zip
tools:
definitions:
- name: grpcui
download: grpcui
known_good_version: 1.4.1
shims: [grpcui]
health_checks:
- command: grpcui --version
parse_regex: grpcui v${semver}
check_stderr: true

0 comments on commit 7f05488

Please sign in to comment.