#!/usr/bin/make -f

# Exclude the binaries
export DH_GOLANG_EXCLUDES := cmd/

# Copy the test data into build directory
export DH_GOLANG_INSTALL_EXTRA := test-fixtures

%:
	dh $@ --buildsystem=golang --with=golang

override_dh_strip_nondeterminism:
	# Disable dh_strip_nondeterminism to prevent autopkgtest failure
