From 23fdb8d1b9904c7ea4d72a5cd7e4dd6856a8bb27 Mon Sep 17 00:00:00 2001 From: Amir Zarrinkafsh Date: Thu, 7 Oct 2021 11:14:15 +1100 Subject: [PATCH] fix(suites): enable cgo in dev workflow (#2454) --- .../example/compose/authelia/resources/run-backend-dev.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/suites/example/compose/authelia/resources/run-backend-dev.sh b/internal/suites/example/compose/authelia/resources/run-backend-dev.sh index aa822176a..d58cce0f6 100755 --- a/internal/suites/example/compose/authelia/resources/run-backend-dev.sh +++ b/internal/suites/example/compose/authelia/resources/run-backend-dev.sh @@ -4,6 +4,6 @@ set -e while true; do - AUTHELIA_SERVER_DISABLE_HEALTHCHECK=true CGO_ENABLED=0 dlv --listen 0.0.0.0:2345 --headless=true --output=./authelia --continue --accept-multiclient debug cmd/authelia/*.go -- --config /config/configuration.yml + AUTHELIA_SERVER_DISABLE_HEALTHCHECK=true CGO_ENABLED=1 dlv --listen 0.0.0.0:2345 --headless=true --output=./authelia --continue --accept-multiclient debug cmd/authelia/*.go -- --config /config/configuration.yml sleep 10 done