podman/contrib/cirrus/unit_test.sh
Brent Baude a64985c71b enable ci on go binding tests
Signed-off-by: Brent Baude <bbaude@redhat.com>
2020-02-22 09:43:19 -06:00

23 lines
296 B
Bash
Executable file

#!/bin/bash
set -e
source $(dirname $0)/lib.sh
req_env_var GOSRC
cd "$GOSRC"
make install.tools
make localunit
case "$SPECIALMODE" in
in_podman) ;&
bindings) ;&
rootless) ;&
none)
make
;;
*)
die 109 "Unsupported \$SPECIAL_MODE: $SPECIALMODE"
esac