mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-26 05:17:22 +00:00
12 lines
366 B
Bash
12 lines
366 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
export RBE_AUTOCONF_ROOT=$(bazel info workspace)
|
||
|
|
||
|
rm -rf "${RBE_AUTOCONF_ROOT}/tools/cross-toolchain/configs/*"
|
||
|
cp -vf "${RBE_AUTOCONF_ROOT}/tools/cross-toolchain/empty.bzl" "${RBE_AUTOCONF_ROOT}/tools/cross-toolchain/configs/versions.bzl"
|
||
|
|
||
|
# Bazel query is the right command so bazel won't fail itself.
|
||
|
bazel query "@rbe_ubuntu_clang_gen//..."
|