As we reevaluate how to best support and maintain Staging Ref in the future, we encourage development teams using this environment to highlight their use cases in the following issue: https://gitlab.com/gitlab-com/gl-infra/software-delivery/framework/software-delivery-framework-issue-tracker/-/issues/36.

Skip to content
Snippets Groups Projects
Commit 4b767a3c authored by Patrick Bajao's avatar Patrick Bajao
Browse files

Merge branch '539-problem-with-upgrading' into 'main'

When building, ignore the vendor/ directory if present

Closes #539

See merge request gitlab-org/gitlab-shell!565
parents c41d2b58 4c527281
No related branches found
No related tags found
No related merge requests found
config.yml
cover.out
tmp/*
.idea
*.log
*.swp
/*.log*
authorized_keys.lock
.gitlab_shell_secret
.bundle
tags
.bundle/
custom_hooks
hooks/*.d
/go_build
/bin/gitlab-sshd
.gitlab_shell_secret
.idea
/*.log*
/bin/check
/bin/gitlab-shell
/bin/gitlab-shell-authorized-keys-check
/bin/gitlab-shell-authorized-principals-check
/bin/check
/bin/gitlab-sshd
/go_build
authorized_keys.lock
config.yml
cover.out
custom_hooks
hooks/*.d
tags
tmp/*
vendor
Loading
Loading
@@ -4,7 +4,7 @@ GO_SOURCES := $(shell find . -name '*.go')
VERSION_STRING := $(shell git describe --match v* 2>/dev/null || awk '$$0="v"$$0' VERSION 2>/dev/null || echo unknown)
BUILD_TIME := $(shell date -u +%Y%m%d.%H%M%S)
BUILD_TAGS := tracer_static tracer_static_jaeger continuous_profiler_stackdriver
GOBUILD_FLAGS := -ldflags "-X main.Version=$(VERSION_STRING) -X main.BuildTime=$(BUILD_TIME)" -tags "$(BUILD_TAGS)"
GOBUILD_FLAGS := -ldflags "-X main.Version=$(VERSION_STRING) -X main.BuildTime=$(BUILD_TIME)" -tags "$(BUILD_TAGS)" -mod=mod
PREFIX ?= /usr/local
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment