diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2020-06-03 09:33:52 -0400 |
---|---|---|
committer | Daniel J Walsh <dwalsh@redhat.com> | 2020-06-03 15:11:34 -0400 |
commit | 9263ed2ab1c87dd798a37ac260e3e81c00a59448 (patch) | |
tree | fde68216341ddc9d49b1155487f6c0ee31a97e07 /hack/golangci-lint.sh | |
parent | 428303c789243e849f8d88c144c5e7c715510860 (diff) | |
download | podman-9263ed2ab1c87dd798a37ac260e3e81c00a59448.tar.gz podman-9263ed2ab1c87dd798a37ac260e3e81c00a59448.tar.bz2 podman-9263ed2ab1c87dd798a37ac260e3e81c00a59448.zip |
Remove use of ABISupport buildtag
We need to default to building podman. If you specify no build
tags you will not build podman, not podman-remote.
Just using remote flag to indicate podman-remote and !remote for
podman.
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'hack/golangci-lint.sh')
-rwxr-xr-x | hack/golangci-lint.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/hack/golangci-lint.sh b/hack/golangci-lint.sh index f4e60d8f5..8c81a3743 100755 --- a/hack/golangci-lint.sh +++ b/hack/golangci-lint.sh @@ -5,12 +5,12 @@ declare -A BUILD_TAGS # TODO: add systemd tag BUILD_TAGS[default]="apparmor,seccomp,selinux" -BUILD_TAGS[abi]="${BUILD_TAGS[default]},ABISupport,varlink,!remoteclient" -BUILD_TAGS[tunnel]="${BUILD_TAGS[default]},!ABISupport,varlink,remoteclient" +BUILD_TAGS[abi]="${BUILD_TAGS[default]},varlink,!remoteclient" +BUILD_TAGS[tunnel]="${BUILD_TAGS[default]},remote,varlink,remoteclient" declare -A SKIP_DIRS SKIP_DIRS[abi]="" -# TODO: add "ABISupport" build tag to pkg/api +# TODO: add "remote" build tag to pkg/api SKIP_DIRS[tunnel]="pkg/api" [[ $1 == run ]] && shift |