mirror of
https://github.com/containers/skopeo.git
synced 2025-04-27 11:01:18 +00:00
The only thing hack/make.sh is now really doing is the warning + sleep without SKOPEO_CONTAINER_TESTS . So, make that a separate script, and eliminate the hack/make directory. Signed-off-by: Miloslav Trmač <mitr@redhat.com>
8 lines
191 B
Bash
Executable File
8 lines
191 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
make PREFIX=/usr install
|
|
|
|
echo "cd ./integration;" go test $TESTFLAGS ${BUILDTAGS:+-tags "$BUILDTAGS"}
|
|
cd ./integration
|
|
go test $TESTFLAGS ${BUILDTAGS:+-tags "$BUILDTAGS"} |