Fix make build-integration-cli-on-swarm
Signed-off-by: Akihiro Suda <suda.akihiro@lab.ntt.co.jp> Upstream-commit: 2fddf9f6efc155c880dfa689bd7df3a5a31ba459 Component: engine
This commit is contained in:
@ -33,6 +33,10 @@ run_test_integration() {
|
||||
}
|
||||
|
||||
build_test_suite_binaries() {
|
||||
if [ $DOCKER_INTEGRATION_TESTS_VERIFIED ]; then
|
||||
echo "Skipping building test binaries; as DOCKER_INTEGRATION_TESTS_VERIFIED is set"
|
||||
return
|
||||
fi
|
||||
build_test_suite_binary ./integration-cli "test.main"
|
||||
for dir in $integration_api_dirs; do
|
||||
build_test_suite_binary "$dir" "test.main"
|
||||
|
||||
8
components/engine/hack/make/build-integration-test-binary
Executable file
8
components/engine/hack/make/build-integration-test-binary
Executable file
@ -0,0 +1,8 @@
|
||||
#!/usr/bin/env bash
|
||||
# required by `make build-integration-cli-on-swarm`
|
||||
set -e
|
||||
|
||||
source "${MAKEDIR}/.go-autogen"
|
||||
source hack/make/.integration-test-helpers
|
||||
|
||||
build_test_suite_binaries
|
||||
Reference in New Issue
Block a user