Skip to content

Commit 5896425

Browse files
committed
fix: added the right output binary arch postfix
Signed-off-by: Paul Bastide <pbastide@us.ibm.com>
1 parent 09bcfc0 commit 5896425

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/publish-llm-d-inference-sim.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,14 +41,14 @@ jobs:
4141

4242
- name: Build the binaries
4343
run: |
44-
mkdir -p tmp/ && \
44+
set -ex && mkdir -p tmp/ && \
4545
cd tmp/ && \
4646
curl -O -L https://github.com/llm-d/llm-d-inference-sim/archive/refs/tags/v0.8.2.zip && \
4747
unzip v0.8.2.zip && \
4848
cd llm-d-inference-sim-0.8.2 && \
4949
cp cmd/llm-d-inference-sim/main.go cmd/cmd.go && \
50-
CGO_ENABLED=0 GOOS=linux GOARCH=ppc64le go build -o bin/llm-d-inference-sim ./cmd/cmd.go && \
51-
CGO_ENABLED=0 GOOS=linux GOARCH=s390x go build -o bin/llm-d-inference-sim ./cmd/cmd.go
50+
CGO_ENABLED=0 GOOS=linux GOARCH=ppc64le go build -o bin/llm-d-inference-sim-ppc64e ./cmd/cmd.go && \
51+
CGO_ENABLED=0 GOOS=linux GOARCH=s390x go build -o bin/llm-d-inference-sim-s390x ./cmd/cmd.go
5252
5353
# Install the cosign tool except on PR
5454
# https://github.com/sigstore/cosign-installer

0 commit comments

Comments
 (0)