#!/usr/bin/make -f

override_dh_auto_test:
	# Skipping running upstream tests
	# Tests need to be run as real root. Upstream provides
	# scripts to easily setup test VMs using vagrant, which
	# is not appropriate in a debian package build.

%:
	dh $@ --buildsystem=golang --with=golang --ignore=bin/example

override_dh_installman:
	make -C docs
	dh_installman -pcontainers-storage docs/*.1
