crosvm/kokoro/kokoro_simulator.sh
Zach Reizner 6868c0a72f add docker supported builds and tests
BUG=None
TEST=docker/build_crosvm_base.sh
     docker/build_crosvm.sh
     docker/wrapped_smoke_test.sh
     docker/crosvm_wrapper.sh
     kokoro/kokoro_simulator.sh
     bin/smoke_test

Change-Id: I55a805ba6326c3c58973d1fe21172a5e3551c1e2
Reviewed-on: https://chromium-review.googlesource.com/1593723
Commit-Ready: Zach Reizner <zachr@chromium.org>
Tested-by: Zach Reizner <zachr@chromium.org>
Tested-by: kokoro <noreply+kokoro@google.com>
Reviewed-by: Dylan Reid <dgreid@chromium.org>
2019-05-15 13:36:19 -07:00

36 lines
975 B
Bash
Executable file

#!/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() {
cd "$(dirname "$0")"
local kokoro_simulator_root=/tmp/kokoro_simulator
local src_root="${kokoro_simulator_root}"/git/crosvm
local base_image_tarball="${kokoro_simulator_root}"/crosvm-base.tar.xz
local base_image="crosvm-base"
mkdir -p "${kokoro_simulator_root}"
if [[ ! -e "${base_image_tarball}" ]]; then
if [[ "$(docker images -q ${base_image} 2> /dev/null)" == "" ]]; then
../docker/build_crosvm_base.sh
fi
docker save ${base_image} | xz -T 0 -z >"${base_image_tarball}"
fi
if [[ ! -e "${src_root}" ]]; then
mkdir -p "${kokoro_simulator_root}"/git
ln -s "$(realpath ../)" "${src_root}"
fi
export KOKORO_ARTIFACTS_DIR="${kokoro_simulator_root}"
export KOKORO_GFILE_DIR="${kokoro_simulator_root}"
./build.sh
}
main "$@"