blob: b9dd92c2f64a32da39b02ffa17d955e3e15b7b4b [file] [log] [blame]
#!/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 -o pipefail
. "$(dirname "$0")/common.sh" || exit 1
main() {
require_kokoro_artifacts
require_cros_milestone
local src_root="${KOKORO_ARTIFACTS_DIR}"/git/cros-container-guest-tools
local result_dir="${src_root}"/simplestreams
if [ "${CROS_MILESTONE}" != "69" ]; then
result_dir="${result_dir}/${CROS_MILESTONE}"
fi
"${src_root}"/lxd/simplestreams_gen.py "${KOKORO_GFILE_DIR}/lxd" \
"${result_dir}"
}
main "$@"