blob: 873b935281af367f42e00b793d19a8585dee421c [file] [log] [blame]
#!/bin/bash
# Copyright 2022 The IREE Authors
#
# Licensed under the Apache License v2.0 with LLVM Exceptions.
# See https://llvm.org/LICENSE.txt for license information.
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
#
# Initialize a subset of submodules for runtime only.
set -xeuo pipefail
SCRIPT_DIR="$(dirname -- "$( readlink -f -- "$0"; )")"
# Read lines from runtime_submodules.txt, stripping \r characters on Windows.
readarray -t RUNTIME_SUBMODULES < <(cat ${SCRIPT_DIR}/runtime_submodules.txt | tr -d '\r')
git submodule sync && git submodule update --init --force --jobs 8 --depth 1 ${RUNTIME_SUBMODULES[@]}