Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-pages.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfeistel <6742251-feistel@users.noreply.gitlab.com>2022-04-28 18:03:16 +0300
committerfeistel <6742251-feistel@users.noreply.gitlab.com>2022-04-28 18:06:49 +0300
commit6e3082789326071e6be0b2d8f3ac52f86b2a12a6 (patch)
treeaf5365badf64e11e26089a4060018b2612287203 /Makefile.util.mk
parent9857f7d70983e7af2f0702035c67743d9e1fa3c0 (diff)
Remove CGO_ENABLED var from makefiles
Diffstat (limited to 'Makefile.util.mk')
-rw-r--r--Makefile.util.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.util.mk b/Makefile.util.mk
index c00cf08e..82eafd3b 100644
--- a/Makefile.util.mk
+++ b/Makefile.util.mk
@@ -16,7 +16,7 @@ test: .GOPATH/.ok bin/gotestsum gitlab-pages
./bin/gotestsum --junitfile junit-test-report.xml --format testname -- ./... ${ARGS}
race: .GOPATH/.ok bin/gotestsum gitlab-pages
- CGO_ENABLED=1 ./bin/gotestsum --junitfile junit-test-report.xml --format testname -- -race $(if $V,-v) ./... ${ARGS}
+ ./bin/gotestsum --junitfile junit-test-report.xml --format testname -- -race $(if $V,-v) ./... ${ARGS}
acceptance: .GOPATH/.ok bin/gotestsum gitlab-pages
./bin/gotestsum --junitfile junit-test-report.xml --format testname -- $(if $V,-v) ./test/acceptance ${ARGS}