fix(suites): enable cgo in dev workflow (#2454)

pull/2464/head
Amir Zarrinkafsh 2021-10-07 11:14:15 +11:00 committed by GitHub
parent 8685e095e9
commit 23fdb8d1b9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -4,6 +4,6 @@ set -e
while true; while true;
do 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 sleep 10
done done