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 21b19230 authored by Ash McKenzie's avatar Ash McKenzie
Browse files

Merge branch 'gssapi-supported' into 'main'

Disable GSSAPI when CGO is enabled to support DNS resolution

Closes #625

See merge request https://gitlab.com/gitlab-org/gitlab-shell/-/merge_requests/866



Merged-by: default avatarAsh McKenzie <amckenzie@gitlab.com>
Approved-by: default avatarStan Hu <stanhu@gmail.com>
Approved-by: default avatarAsh McKenzie <amckenzie@gitlab.com>
Co-authored-by: default avatarHarshit Prasad <harshitprasad28@gmail.com>
parents 6adde7e0 001c7aa9
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