2018-03-15 16:59:19 +00:00
|
|
|
#!/bin/bash
|
|
|
|
# Copyright 2018 The Chromium OS Authors. All rights reserved.
|
|
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
|
|
# found in the LICENSE file.
|
|
|
|
|
|
|
|
set -ex
|
|
|
|
|
|
|
|
main() {
|
2018-09-20 21:39:59 +00:00
|
|
|
if [ -z "${KOKORO_ARTIFACTS_DIR}" ]; then
|
|
|
|
echo "This script must be run in kokoro"
|
|
|
|
exit 1
|
|
|
|
fi
|
2018-03-15 16:59:19 +00:00
|
|
|
|
2018-09-20 21:39:59 +00:00
|
|
|
local src_root="${KOKORO_ARTIFACTS_DIR}"/git/crosvm
|
|
|
|
local base_image_tarball="${KOKORO_GFILE_DIR}"/crosvm-base.tar.xz
|
|
|
|
local base_image="crosvm-base"
|
2018-03-15 16:59:19 +00:00
|
|
|
|
2018-09-20 21:39:59 +00:00
|
|
|
if [[ "$(docker images -q ${base_image} 2> /dev/null)" == "" ]]; then
|
|
|
|
docker load -i "${base_image_tarball}"
|
|
|
|
fi
|
2019-05-02 19:26:24 +00:00
|
|
|
"${src_root}"/docker/wrapped_smoke_test.sh
|
2018-09-20 21:39:59 +00:00
|
|
|
|
|
|
|
return 0
|
2018-03-15 16:59:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
main "$@"
|