Skip to content

Commit d092ca2

Browse files
Jesús Fernándezfernandezcuesta
authored andcommitted
feat: add ghz
Signed-off-by: Jesús Fernández <[email protected]>
1 parent 2e07274 commit d092ca2

File tree

6 files changed

+112
-475
lines changed

6 files changed

+112
-475
lines changed

.github/workflows/release-buildx.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,18 @@ jobs:
1111
steps:
1212
-
1313
name: Checkout
14-
uses: actions/checkout@v3
14+
uses: actions/checkout@v4
1515
with:
1616
ref: ${{ github.ref }}
1717
-
1818
name: Set up QEMU
19-
uses: docker/setup-qemu-action@v2
19+
uses: docker/setup-qemu-action@v3
2020
with:
2121
platforms: arm64,amd64
2222
-
2323
name: Set up Docker Buildx
2424
id: buildx
25-
uses: docker/setup-buildx-action@v2
25+
uses: docker/setup-buildx-action@v3
2626
-
2727
name: Available platforms
2828
run: echo ${{ steps.buildx.outputs.platforms }}

.github/workflows/test-pr-buildx.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,16 @@ jobs:
1010
steps:
1111
-
1212
name: Checkout
13-
uses: actions/checkout@v3
13+
uses: actions/checkout@v4
1414
-
1515
name: Set up QEMU
16-
uses: docker/setup-qemu-action@v2
16+
uses: docker/setup-qemu-action@v3
1717
with:
1818
platforms: arm64,amd64
1919
-
2020
name: Set up Docker Buildx
2121
id: buildx
22-
uses: docker/setup-buildx-action@v2
22+
uses: docker/setup-buildx-action@v3
2323
-
2424
name: Available platforms
2525
run: echo ${{ steps.buildx.outputs.platforms }}

Dockerfile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ RUN apt-get update && apt-get install -y \
77

88
RUN /tmp/fetch_binaries.sh
99

10-
FROM alpine:3.18.0
10+
FROM alpine:3.22.0
1111

1212
RUN set -ex \
1313
&& echo "http://dl-cdn.alpinelinux.org/alpine/edge/main" >> /etc/apk/repositories \
@@ -62,6 +62,7 @@ RUN set -ex \
6262
strace \
6363
tcpdump \
6464
tcptraceroute \
65+
trippy \
6566
tshark \
6667
util-linux \
6768
vim \
@@ -81,6 +82,9 @@ COPY --from=fetcher /tmp/calicoctl /usr/local/bin/calicoctl
8182
# Installing termshark
8283
COPY --from=fetcher /tmp/termshark /usr/local/bin/termshark
8384

85+
# Installing ghz
86+
COPY --from=fetcher /tmp/ghz /usr/local/bin/ghz
87+
8488
# Installing grpcurl
8589
COPY --from=fetcher /tmp/grpcurl /usr/local/bin/grpcurl
8690

0 commit comments

Comments
 (0)