Skip to content

Commit 692c208

Browse files
committed
try to debug CI/CD failures
Signed-off-by: Slach <bloodjazman@gmail.com>
1 parent 0dda507 commit 692c208

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ RUN rm -fv /etc/apt/sources.list.d/clickhouse.list && \
1616
echo "deb-src https://ppa.launchpadcontent.net/longsleep/golang-backports/ubuntu ${DISTRIB_CODENAME} main" >> /etc/apt/sources.list.d/golang.list && \
1717
( apt-get update || true ) && \
1818
apt-get install -y --no-install-recommends libc-dev golang-1.24 make git gcc musl-dev musl-tools && \
19-
wget -q -P /root/ https://musl.cc/aarch64-linux-musl-cross.tgz && \
19+
wget -nv -P /root/ https://musl.cc/aarch64-linux-musl-cross.tgz && \
2020
tar -xvf /root/aarch64-linux-musl-cross.tgz -C /root/ && \
2121
mkdir -p /root/go/
2222

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ build/linux/amd64/$(NAME)-fips build/darwin/amd64/$(NAME)-fips:
6363

6464
# TODO remove ugly workaround, https://www.perplexity.ai/search/2ead4c04-060a-4d78-a75f-f26835238438
6565
build/linux/arm64/$(NAME)-fips build/darwin/arm64/$(NAME)-fips:
66-
bash -xce 'if [[ ! -f ~/aarch64-linux-musl-cross/bin/aarch64-linux-musl-gcc ]]; then wget -q -P ~ https://musl.cc/aarch64-linux-musl-cross.tgz; tar -xvf ~/aarch64-linux-musl-cross.tgz -C ~; fi' && \
66+
bash -xce 'if [[ ! -f ~/aarch64-linux-musl-cross/bin/aarch64-linux-musl-gcc ]]; then wget -nv -P ~ https://musl.cc/aarch64-linux-musl-cross.tgz; tar -xvf ~/aarch64-linux-musl-cross.tgz -C ~; fi' && \
6767
CC=~/aarch64-linux-musl-cross/bin/aarch64-linux-musl-gcc GOEXPERIMENT=boringcrypto CGO_ENABLED=1 GOOS=$(GOOS) GOARCH=$(GOARCH) $(GO_BUILD_STATIC_FIPS) -o $@ ./cmd/$(NAME) && \
6868
go tool nm $@ > /tmp/$(NAME)-fips-tags.txt && \
6969
grep '_Cfunc__goboringcrypto_' /tmp/$(NAME)-fips-tags.txt 1> /dev/null && \

0 commit comments

Comments
 (0)