From 24a65ea3a373a010c146891a68898d62fb356cad Mon Sep 17 00:00:00 2001 From: gregnuj Date: Tue, 31 Oct 2023 15:09:39 -0500 Subject: [PATCH] disable static check for celestia --- .github/workflows/celestia-build.yml | 1 + .github/workflows/docker-build.yml | 5 +++++ builds/celestia.0.12.0.alpine.sh | 1 + 3 files changed, 7 insertions(+) diff --git a/.github/workflows/celestia-build.yml b/.github/workflows/celestia-build.yml index c836380..41c281d 100644 --- a/.github/workflows/celestia-build.yml +++ b/.github/workflows/celestia-build.yml @@ -48,6 +48,7 @@ jobs: # Includes per version - version: "0.12.0" go_version: "1.21.1" + check_statically: "false" with: binary: ${{ matrix.binary }} diff --git a/.github/workflows/docker-build.yml b/.github/workflows/docker-build.yml index fc309ea..1a6b2e7 100644 --- a/.github/workflows/docker-build.yml +++ b/.github/workflows/docker-build.yml @@ -21,6 +21,11 @@ on: description: "Name of the application" required: true type: string + check_statically: + description: "Check for static build" + required: false + type: string + default: "true" cosmos_build_options: description: "Cosmos build options" type: string diff --git a/builds/celestia.0.12.0.alpine.sh b/builds/celestia.0.12.0.alpine.sh index 591f724..2eeffaa 100755 --- a/builds/celestia.0.12.0.alpine.sh +++ b/builds/celestia.0.12.0.alpine.sh @@ -20,6 +20,7 @@ docker buildx build "." -f "${IMAGE}.Dockerfile" \ --build-arg "BIN_NAME=${NAME}" \ --build-arg "BUILD_COMMAND=make build && cp ./build/celestia /go/bin/celestia" \ --build-arg "BUILD_TAGS=netgo ledger muslc" \ + --build-arg "CHECK_STATICALLY=false" \ --build-arg "COSMOS_BUILD_OPTIONS=" \ --build-arg "GIT_TAG=v${TAG}" \ --build-arg "GIT_REPO=${REPO}" \