ajithu

Results 7 comments of ajithu

I am also facing this issue. Not suitable for Mac. ```sh ajithu@Ajiths-MacBook-Pro repo % bazel --version 2021/12/09 16:20:27 Downloading https://releases.bazel.build/3.7.1/release/bazel-3.7.1-darwin-arm64... 2021/12/09 16:20:27 could not download Bazel: HTTP GET https://releases.bazel.build/3.7.1/release/bazel-3.7.1-darwin-arm64 failed...

@finn-ball, I have made these changes in the "WORKSPACE" ``` http_archive( name = "bazel_gazelle", sha256 = "222e49f034ca7a1d1231422cdb67066b885819885c356673cb1f72f748a3c9d4", urls = [ "https://mirror.bazel.build/github.com/bazelbuild/bazel-gazelle/releases/download/v0.22.3/bazel-gazelle-v0.22.3.tar.gz", "https://github.com/bazelbuild/bazel-gazelle/releases/download/v0.22.3/bazel-gazelle-v0.22.3.tar.gz", ], ) load("@bazel_gazelle//:deps.bzl", "gazelle_dependencies", "go_repository") gazelle_dependencies() ... ......

This works fine, Only thing we need to consider is the order in the WORKSPACE file. those should be defined on top of io_bazel_rules_jsonnet

I have changed the sequence of the rules in my WORKSPACE file. PR won't be required I guess. This is the sequence in the WORKSPACE file 1. io_bazel_rules_go 2. bazel_gazelle...

Ok, it works.. Looks like the zombie process is causing the problem.

Is it possible to run a "sleep" and kill any pending bazel processes ? On Sun, 10 Apr 2022, 22:08 hbc, ***@***.***> wrote: > I am having the same issue...