mirror of
https://github.com/containers/podman.git
synced 2025-05-22 17:46:52 +08:00

This PR introduces a test suite for podman machine. It can currently be run on developers' local machines and is not part of the official CI testing; however, the expectation is that any work on machine should come with an accompanying test. At present, the test must be run on Linux. It is untested on Darwin. There is no Makefile target for the test. It can be run like `ginkgo -v pkg/machine/test/.`. It should be run as a unprivileged user. Signed-off-by: Brent Baude <bbaude@redhat.com>
26 lines
751 B
Bash
Executable File
26 lines
751 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Need to run linter twice to cover all the build tags code paths
|
|
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"
|
|
|
|
declare -A SKIP_DIRS
|
|
SKIP_DIRS[abi]="pkg/machine/e2e"
|
|
# TODO: add "remote" build tag to pkg/api
|
|
SKIP_DIRS[tunnel]="pkg/api,pkg/machine/e2e"
|
|
|
|
[[ $1 == run ]] && shift
|
|
|
|
for i in tunnel abi; do
|
|
echo ""
|
|
echo Running golangci-lint for "$i"
|
|
echo Build Tags "$i": ${BUILD_TAGS[$i]}
|
|
echo Skipped directories "$i": ${SKIP_DIRS[$i]}
|
|
./bin/golangci-lint run --build-tags=${BUILD_TAGS[$i]} --skip-dirs=${SKIP_DIRS[$i]} "$@"
|
|
done
|