mirror of
https://github.com/containers/skopeo.git
synced 2025-10-22 03:24:25 +00:00
So that people don't need to install all dependencies just to build. Make it so that "make binary" does nothing if nothing changed. Remove ${DEST} Signed-off-by: Doug Davis <dug@us.ibm.com>
16 lines
284 B
Bash
Executable File
16 lines
284 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
|
|
make install-binary
|
|
export GO15VENDOREXPERIMENT=1
|
|
bundle_test_integration
|
|
) 2>&1
|