From 7a51df0da0ef715bd9bef5eccab10d71636bfbe5 Mon Sep 17 00:00:00 2001 From: Ambrose Chua Date: Sat, 1 Dec 2018 01:05:11 +0800 Subject: [PATCH] Disable CGO when testing Go --- .drone.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.drone.yml b/.drone.yml index 5887332..9336c71 100644 --- a/.drone.yml +++ b/.drone.yml @@ -72,6 +72,7 @@ steps: - ./.install/repositories.sh - ./.install/golang.sh - go version + - CGO_ENABLED=0 - go get github.com/golang/example/hello - $HOME/go/bin/hello ---