diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-06-15 00:49:10 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-15 00:49:10 -0400 |
commit | cab97798bfe8fecd597693255f5a054bd5b7d459 (patch) | |
tree | fad656362266ac5bba3e64282b86906e010b0615 /hack/golangci-lint.sh | |
parent | e084f0ee1e1ded564110e84eefca9f18b5669adf (diff) | |
parent | 1b62e4543845907ffba61086a79883751abca819 (diff) | |
download | podman-cab97798bfe8fecd597693255f5a054bd5b7d459.tar.gz podman-cab97798bfe8fecd597693255f5a054bd5b7d459.tar.bz2 podman-cab97798bfe8fecd597693255f5a054bd5b7d459.zip |
Merge pull request #14584 from Luap99/lint-systemd
golangci-lint: add systemd build tag
Diffstat (limited to 'hack/golangci-lint.sh')
-rwxr-xr-x | hack/golangci-lint.sh | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/hack/golangci-lint.sh b/hack/golangci-lint.sh index 8b80bd9c9..2eaf206d7 100755 --- a/hack/golangci-lint.sh +++ b/hack/golangci-lint.sh @@ -4,10 +4,9 @@ set -e declare -A BUILD_TAGS -# TODO: add systemd tag BUILD_TAGS[default]="apparmor,seccomp,selinux,linter" -BUILD_TAGS[abi]="${BUILD_TAGS[default]},!remoteclient" -BUILD_TAGS[tunnel]="${BUILD_TAGS[default]},remote,remoteclient" +BUILD_TAGS[abi]="${BUILD_TAGS[default]},systemd" +BUILD_TAGS[tunnel]="${BUILD_TAGS[default]},remote" declare -A SKIP_DIRS SKIP_DIRS[abi]="pkg/machine/e2e" |