Closed justinsb closed 4 years ago
Due to https://github.com/bazelbuild/rules_go/issues/456 , the build of etcd 2.2.1 did not work correctly on case-insensitive file systems, including MacOS.
etcd has a shell script named build, which bazel was treating as a BUILD file. By setting bazel to only look for BUILD.bazel files, this is avoided.
build
BUILD
BUILD.bazel
cc @hakman
Fix for the cloudbuild failure is (hopefully) in https://github.com/kopeio/etcd-manager/pull/363
Nice. Thanks! :)
Due to https://github.com/bazelbuild/rules_go/issues/456 , the build of etcd 2.2.1 did not work correctly on case-insensitive file systems, including MacOS.
etcd has a shell script named
build
, which bazel was treating as aBUILD
file. By setting bazel to only look forBUILD.bazel
files, this is avoided.