mirror of
https://github.com/containers/skopeo.git
synced 2025-08-14 12:46:03 +00:00
containers/storage needs math/bits which has been added in go 1.9, so this is now the lowest possible go version to build skopeo. We can also remove the GO15VENDOREXPERIMENT variable since this has been enabled in go 1.6 per default and removed in go 1.7. Signed-off-by: Sascha Grunert <sgrunert@suse.com>
15 lines
283 B
Bash
Executable File
15 lines
283 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
bundle_test_integration() {
|
|
TESTFLAGS="$TESTFLAGS -check.v"
|
|
go_test_dir ./integration
|
|
}
|
|
|
|
# subshell so that we can export PATH without breaking other things
|
|
(
|
|
make binary-local ${BUILDTAGS:+BUILDTAGS="$BUILDTAGS"}
|
|
make install
|
|
bundle_test_integration
|
|
) 2>&1
|