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 001c7aa9 authored by Harshit Prasad's avatar Harshit Prasad
Browse files

Disable GSSAPI when CGO is enabled to support DNS resolution

parent fbe901bd
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -5,7 +5,7 @@ OS := $(shell uname | tr A-Z a-z)
GO_SOURCES := $(shell git ls-files \*.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
BUILD_TAGS := tracer_static tracer_static_jaeger continuous_profiler_stackdriver gssapi
ARCH ?= $(shell uname -m | sed -e 's/x86_64/amd64/' | sed -e 's/aarch64/arm64/')
Loading
Loading
//go:build cgo
//go:build gssapi
package sshd
Loading
Loading
//go:build cgo
//go:build gssapi
package sshd
Loading
Loading
//go:build !cgo
//go:build !gssapi
package sshd
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