From a075271a755e1363f25be2b3d801265f1903211b Mon Sep 17 00:00:00 2001 From: Matt Joiner Date: Mon, 12 May 2025 19:59:12 +1000 Subject: [PATCH] Fix static linking for Linux --- .github/workflows/go.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 9a1331b6..8917a4ed 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -6,7 +6,7 @@ jobs: test: runs-on: ${{ matrix.os }} env: - CGO_LDFLAGS: "-Lstorage/possum/lib/target/debug -lpossum" + CGO_LDFLAGS: storage/possum/lib/target/debug/libpossum.a strategy: matrix: go-version: ["1.24"] -- 2.51.0