blob: d723562c9c1167a55a89c0cbcb7b9925d55c7afd [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
. "$(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}"
}
skip_in_presubmit
main "$@"