diff options
author | Neil Alexander <neilalexander@users.noreply.github.com> | 2022-08-03 10:50:45 +0100 |
---|---|---|
committer | Neil Alexander <neilalexander@users.noreply.github.com> | 2022-08-03 10:50:45 +0100 |
commit | bbff41b44bff2dbc53867cc0fd94ce8f31fd511a (patch) | |
tree | 7bda841aeb7e8f6259c9d7df9126749d1b31bd60 /.github | |
parent | 376391d1c7e309e4a09998c0717ec8adc70fe1a4 (diff) |
Disable stack protector on Linux CI build pipelines for now (to avoid `relocation target __stack_chk_fail_local not defined` errors)
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/dendrite.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.github/workflows/dendrite.yml b/.github/workflows/dendrite.yml index 0d1970ef..19ebd760 100644 --- a/.github/workflows/dendrite.yml +++ b/.github/workflows/dendrite.yml @@ -151,6 +151,7 @@ jobs: GOOS: ${{ matrix.goos }} GOARCH: ${{ matrix.goarch }} CGO_ENABLED: 1 + CGO_CFLAGS: -fno-stack-protector run: go build -trimpath -v -o "bin/" ./cmd/... # build for Windows 64-bit |