diff options
-rwxr-xr-x | tools/clang/scripts/update.sh | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/tools/clang/scripts/update.sh b/tools/clang/scripts/update.sh index 0a33894..2bca416 100755 --- a/tools/clang/scripts/update.sh +++ b/tools/clang/scripts/update.sh @@ -117,8 +117,12 @@ function on_asan_mac_host { if [[ "${HOST}" == "mini11-a1" ]]; then return 0 fi - # mac_asan trybots. - for num in $(jot - 600 655) + # mac_asan trybots. These share machines with the mac_layout bots, so only + # pin clang if the slave is used for an _asan build, not for a layout build. + if [[ "${PWD}" != *asan* ]]; then + return 1 + fi + for num in {600..655} do if [[ "${HOST}" == "vm${num}-m4" ]]; then return 0 |