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:
authorJaime Martinez <jmartinez@gitlab.com>2021-03-25 07:45:08 +0300
committerJaime Martinez <jmartinez@gitlab.com>2021-03-25 07:45:08 +0300
commit33723f8a85871797b6f38ab0340437a9b635f917 (patch)
tree9ff99365659f0e47673c9c8f5cd60610e88936f5 /Makefile
parent575fec0d865d576c295aa7263d190744bd0a0328 (diff)
Remove .GOPATH symlinks
Simplifies Makefiles to not use `.GOPATH` symlink. Updates `test.yaml` to reuse the Go cache in between jobs instead of removing and downloading all the dependencies for every job. Changelog: other
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 6dd8662b..216cfe6b 100644
--- a/Makefile
+++ b/Makefile
@@ -2,7 +2,7 @@ IMPORT_PATH := gitlab.com/gitlab-org/gitlab-pages
V := 1
# Space separated patterns of packages to skip in list, test, fmt.
-IGNORED_PACKAGES := /vendor/ /internal/httputil/ /internal/mocks/
+IGNORED_DIRS := internal/httputil internal/mocks
# GitLab Pages is statically compiled without CGO to help it in chroot mode
export CGO_ENABLED := 0