aboutsummaryrefslogtreecommitdiff
path: root/hack/validate/default-seccomp
blob: c5f8c7e3c8e1ba69902fb2fe79d7420c50b47ac7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/usr/bin/env bash

export SCRIPTDIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
source "${SCRIPTDIR}/.validate"

IFS=$'\n'
files=($(validate_diff --diff-filter=ACMR --name-only -- 'profiles/seccomp' || true))
unset IFS

if [ -n "${TEST_FORCE_VALIDATE:-}" ] || [ ${#files[@]} -gt 0 ]; then
	# We run 'go generate' and see if we have a diff afterwards
	go generate ./profiles/seccomp/ > /dev/null
	# Let see if the working directory is clean
	diffs="$(git status --porcelain -- profiles/seccomp 2> /dev/null)"
	if [ "$diffs" ]; then
		{
			echo 'The result of go generate ./profiles/seccomp/ differs'
			echo
			echo "$diffs"
			echo
			echo 'Please re-run go generate ./profiles/seccomp/'
			echo
		} >&2
		false
	else
		echo 'Congratulations!  Seccomp profile generation is done correctly.'
	fi
fi