Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Include go.env in //go runfiles #3722

Merged
merged 1 commit into from
Oct 11, 2023
Merged

Include go.env in //go runfiles #3722

merged 1 commit into from
Oct 11, 2023

Conversation

fmeum
Copy link
Collaborator

@fmeum fmeum commented Oct 10, 2023

Speculative fix for user reports of this error message showing up when using //go, which indicates that go.env is missing:

GOPROXY list is not the empty string, but contains no entries

Adding go.env to the tools files of the SDK rather than creating a new field on GoSDK for it may end up fixing latent bugs.

https://bazelbuild.slack.com/archives/CDBP88Z0D/p1696892815685419

Speculative fix for user reports of this error message showing up when
using `//go`, which indicates that `go.env` is missing:

```
GOPROXY list is not the empty string, but contains no entries
```

Adding `go.env` to the `tools` files of the SDK rather than creating a
new field on `GoSDK` for it may end up fixing latent bugs.
@fmeum
Copy link
Collaborator Author

fmeum commented Oct 11, 2023

Has been confirmed to fix the issue in https://bazelbuild.slack.com/archives/CDBP88Z0D/p1697043722156949?thread_ts=1696892815.685419&cid=CDBP88Z0D.

@tyler-french I will merge since this seems trivial enough and has been tested, please take a look when you have the time.

@fmeum fmeum enabled auto-merge (squash) October 11, 2023 17:42
@fmeum fmeum merged commit 4706a51 into master Oct 11, 2023
5 checks passed
@fmeum fmeum deleted the go-env branch October 11, 2023 18:28
@sluongng
Copy link
Contributor

Ran into this issue today... digged around a bunch and ended up finding your PR here 🙃

For future curious readers: we initially included the go.env file to filegroup(name = "files") under a downloaded Go SDK's BUILD file. However, the action GoToolchainBinaryBuild does not use this filegroup. Instead, it uses the libs, headers, srcs and tools filegroup in the same BUILD file.

This PR fixes it so that we include go.env to both files and tools filegroup, which fixes GoToolchainBinaryBuild action.


@fmeum this might be worth a patch release. WDYT?

@fmeum
Copy link
Collaborator Author

fmeum commented Oct 31, 2023

Patch release not sure, but minor release without obvious breaking changes probably yes. Which means that we might want to hold onto the tools update. Sigh.

sluongng added a commit to buildbuddy-io/buildbuddy that referenced this pull request Nov 1, 2023
In Go 1.21, Go SDK starts to include `go.env` file at the root of the
toolchain with GOPROXY set to default values. With this changes, Go
toolings start to fail when the `go.env` file is not found and the proxy
is unset.

We actually don't get this problem when using Linux RBE because our
action execution image has Go pre-installed and there seems to be some
magic fall back somewhere. However when attempting to build using MacOS
RBE, the error occurred on GoToolchainBinaryBuild actions.

Luckily, this was reported in Bazel slack and fixed in (1).
This PR upgrade our rules_go to that exact fixed commit.

(1): bazelbuild/rules_go#3722
@cgrindel
Copy link

cgrindel commented Nov 9, 2023

@fmeum It would be great to get this released. I just ran into it trying to upgrade my rulesets. Because they are rulesets, I cannot rely on an override.

renovate bot added a commit to kreempuff/rules_unreal_engine that referenced this pull request Nov 20, 2023
[![Mend Renovate logo
banner](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [io_bazel_rules_go](https://togithub.com/bazelbuild/rules_go) |
http_archive | minor | `v0.42.0` -> `v0.43.0` |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

---

### Release Notes

<details>
<summary>bazelbuild/rules_go (io_bazel_rules_go)</summary>

###
[`v0.43.0`](https://togithub.com/bazelbuild/rules_go/releases/tag/v0.43.0)

[Compare
Source](https://togithub.com/bazelbuild/rules_go/compare/v0.42.0...v0.43.0)

#### Breaking `x/tools` upgrade

This change includes a breaking upgrade to
[golang.org/x/tools](https://pkg.go.dev/golang.org/x/tools)

Please make sure to upgrade `x/tools` to version `v0.15.0` to ensure
compatibility with rules_go's NoGo.

**If you need to use an older version of `x/tools` (`v0.13.0` or
earlier), apply the following patch to `rules_go`**:

[x-tools.patch](https://togithub.com/bazelbuild/rules_go/files/13417624/x-tools.patch)

#### What's Changed

- Test BCR test module on macos_arm64 by
[@&#8203;fmeum](https://togithub.com/fmeum) in
[bazelbuild/rules_go#3715
- update documentation for `0.42.0` release by
[@&#8203;tyler-french](https://togithub.com/tyler-french) in
[bazelbuild/rules_go#3716
- add netrc support to go_download_sdk by
[@&#8203;justinwon777](https://togithub.com/justinwon777) in
[bazelbuild/rules_go#3718
- Temporarily disable Bzlmod explicitly by
[@&#8203;fmeum](https://togithub.com/fmeum) in
[bazelbuild/rules_go#3720
- Fix urls used to get auth in go_download_sdk by
[@&#8203;justinwon777](https://togithub.com/justinwon777) in
[bazelbuild/rules_go#3724
- Include `go.env` in `//go` runfiles by
[@&#8203;fmeum](https://togithub.com/fmeum) in
[bazelbuild/rules_go#3722
- Update arm platform constraint to latest value in bazel. by
[@&#8203;BryanDClark](https://togithub.com/BryanDClark) in
[bazelbuild/rules_go#3734
- Add toolchain param to affected actions by
[@&#8203;kotlaja](https://togithub.com/kotlaja) in
[bazelbuild/rules_go#3740
- upgrade tools by [@&#8203;hawkingrei](https://togithub.com/hawkingrei)
in
[bazelbuild/rules_go#3730
- Also take library deps like srcs into account in go context by
[@&#8203;mering](https://togithub.com/mering) in
[bazelbuild/rules_go#3725
- Add go_cross_binary to README by
[@&#8203;jfirebaugh](https://togithub.com/jfirebaugh) in
[bazelbuild/rules_go#3744
- Update `bazel_features` to v1.1.1 by
[@&#8203;fmeum](https://togithub.com/fmeum) in
[bazelbuild/rules_go#3747
- builder: Make paths absolute for stdliblist
([#&#8203;1357](https://togithub.com/bazelbuild/rules_go/issues/1357))
by [@&#8203;zecke](https://togithub.com/zecke) in
[bazelbuild/rules_go#3748
- feat(gopackagesdriver): add base test case for go packages driver by
[@&#8203;JamyDev](https://togithub.com/JamyDev) in
[bazelbuild/rules_go#3743
- Fix bazel query scope not being used by
[@&#8203;rastenis](https://togithub.com/rastenis) in
[bazelbuild/rules_go#3688
- Add support for `xtest` packages in Go Packages Driver by
[@&#8203;JamyDev](https://togithub.com/JamyDev) in
[bazelbuild/rules_go#3750
- upgrade x/tools to 0.15.0 by
[@&#8203;tyler-french](https://togithub.com/tyler-french) in
[bazelbuild/rules_go#3751
- bug fix: parse embeds in files that contain the double quote rune by
[@&#8203;andyscott](https://togithub.com/andyscott) in
[bazelbuild/rules_go#3672
- prepare release 0.43.0 by
[@&#8203;tyler-french](https://togithub.com/tyler-french) in
[bazelbuild/rules_go#3745

#### New Contributors

- [@&#8203;justinwon777](https://togithub.com/justinwon777) made their
first contribution in
[bazelbuild/rules_go#3718
- [@&#8203;BryanDClark](https://togithub.com/BryanDClark) made their
first contribution in
[bazelbuild/rules_go#3734
- [@&#8203;kotlaja](https://togithub.com/kotlaja) made their first
contribution in
[bazelbuild/rules_go#3740
- [@&#8203;rastenis](https://togithub.com/rastenis) made their first
contribution in
[bazelbuild/rules_go#3688
- [@&#8203;andyscott](https://togithub.com/andyscott) made their first
contribution in
[bazelbuild/rules_go#3672

**Full Changelog**:
bazelbuild/rules_go@v0.42.0...v0.43.0

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/kreempuff/rules_unreal_engine).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy41OS44IiwidXBkYXRlZEluVmVyIjoiMzcuNTkuOCIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->
cgrindel-self-hosted-renovate bot added a commit to cgrindel/bazel-starlib that referenced this pull request Nov 20, 2023
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [io_bazel_rules_go](https://togithub.com/bazelbuild/rules_go) |
http_archive | minor | `v0.42.0` -> `v0.43.0` |

---

### Release Notes

<details>
<summary>bazelbuild/rules_go (io_bazel_rules_go)</summary>

###
[`v0.43.0`](https://togithub.com/bazelbuild/rules_go/releases/tag/v0.43.0)

[Compare
Source](https://togithub.com/bazelbuild/rules_go/compare/v0.42.0...v0.43.0)

#### Breaking `x/tools` upgrade

This change includes a breaking upgrade to
[golang.org/x/tools](https://pkg.go.dev/golang.org/x/tools)

Please make sure to upgrade `x/tools` to version `v0.15.0` to ensure
compatibility with rules_go's NoGo.

**If you need to use an older version of `x/tools` (`v0.13.0` or
earlier), apply the following patch to `rules_go`**:

[x-tools.patch](https://togithub.com/bazelbuild/rules_go/files/13417624/x-tools.patch)

#### What's Changed

- Test BCR test module on macos_arm64 by
[@&#8203;fmeum](https://togithub.com/fmeum) in
[bazelbuild/rules_go#3715
- update documentation for `0.42.0` release by
[@&#8203;tyler-french](https://togithub.com/tyler-french) in
[bazelbuild/rules_go#3716
- add netrc support to go_download_sdk by
[@&#8203;justinwon777](https://togithub.com/justinwon777) in
[bazelbuild/rules_go#3718
- Temporarily disable Bzlmod explicitly by
[@&#8203;fmeum](https://togithub.com/fmeum) in
[bazelbuild/rules_go#3720
- Fix urls used to get auth in go_download_sdk by
[@&#8203;justinwon777](https://togithub.com/justinwon777) in
[bazelbuild/rules_go#3724
- Include `go.env` in `//go` runfiles by
[@&#8203;fmeum](https://togithub.com/fmeum) in
[bazelbuild/rules_go#3722
- Update arm platform constraint to latest value in bazel. by
[@&#8203;BryanDClark](https://togithub.com/BryanDClark) in
[bazelbuild/rules_go#3734
- Add toolchain param to affected actions by
[@&#8203;kotlaja](https://togithub.com/kotlaja) in
[bazelbuild/rules_go#3740
- upgrade tools by [@&#8203;hawkingrei](https://togithub.com/hawkingrei)
in
[bazelbuild/rules_go#3730
- Also take library deps like srcs into account in go context by
[@&#8203;mering](https://togithub.com/mering) in
[bazelbuild/rules_go#3725
- Add go_cross_binary to README by
[@&#8203;jfirebaugh](https://togithub.com/jfirebaugh) in
[bazelbuild/rules_go#3744
- Update `bazel_features` to v1.1.1 by
[@&#8203;fmeum](https://togithub.com/fmeum) in
[bazelbuild/rules_go#3747
- builder: Make paths absolute for stdliblist
([#&#8203;1357](https://togithub.com/bazelbuild/rules_go/issues/1357))
by [@&#8203;zecke](https://togithub.com/zecke) in
[bazelbuild/rules_go#3748
- feat(gopackagesdriver): add base test case for go packages driver by
[@&#8203;JamyDev](https://togithub.com/JamyDev) in
[bazelbuild/rules_go#3743
- Fix bazel query scope not being used by
[@&#8203;rastenis](https://togithub.com/rastenis) in
[bazelbuild/rules_go#3688
- Add support for `xtest` packages in Go Packages Driver by
[@&#8203;JamyDev](https://togithub.com/JamyDev) in
[bazelbuild/rules_go#3750
- upgrade x/tools to 0.15.0 by
[@&#8203;tyler-french](https://togithub.com/tyler-french) in
[bazelbuild/rules_go#3751
- bug fix: parse embeds in files that contain the double quote rune by
[@&#8203;andyscott](https://togithub.com/andyscott) in
[bazelbuild/rules_go#3672
- prepare release 0.43.0 by
[@&#8203;tyler-french](https://togithub.com/tyler-french) in
[bazelbuild/rules_go#3745

#### New Contributors

- [@&#8203;justinwon777](https://togithub.com/justinwon777) made their
first contribution in
[bazelbuild/rules_go#3718
- [@&#8203;BryanDClark](https://togithub.com/BryanDClark) made their
first contribution in
[bazelbuild/rules_go#3734
- [@&#8203;kotlaja](https://togithub.com/kotlaja) made their first
contribution in
[bazelbuild/rules_go#3740
- [@&#8203;rastenis](https://togithub.com/rastenis) made their first
contribution in
[bazelbuild/rules_go#3688
- [@&#8203;andyscott](https://togithub.com/andyscott) made their first
contribution in
[bazelbuild/rules_go#3672

**Full Changelog**:
bazelbuild/rules_go@v0.42.0...v0.43.0

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.

👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config help](https://togithub.com/renovatebot/renovate/discussions) if
that's undesired.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Renovate
Bot](https://togithub.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNi4xMDAuMCIsInVwZGF0ZWRJblZlciI6IjM2LjEwMC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

Co-authored-by: Self-hosted Renovate Bot <361546+cgrindel-self-hosted-renovate[bot]@users.noreply.github.enterprise.com>
cgrindel-self-hosted-renovate bot added a commit to cgrindel/rules_swift_package_manager that referenced this pull request Nov 22, 2023
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [io_bazel_rules_go](https://togithub.com/bazelbuild/rules_go) |
http_archive | minor | `v0.42.0` -> `v0.43.0` |

---

### Release Notes

<details>
<summary>bazelbuild/rules_go (io_bazel_rules_go)</summary>

###
[`v0.43.0`](https://togithub.com/bazelbuild/rules_go/releases/tag/v0.43.0)

[Compare
Source](https://togithub.com/bazelbuild/rules_go/compare/v0.42.0...v0.43.0)

#### Breaking `x/tools` upgrade

This change includes a breaking upgrade to
[golang.org/x/tools](https://pkg.go.dev/golang.org/x/tools)

Please make sure to upgrade `x/tools` to version `v0.15.0` to ensure
compatibility with rules_go's NoGo.

**If you need to use an older version of `x/tools` (`v0.13.0` or
earlier), apply the following patch to `rules_go`**:

[x-tools.patch](https://togithub.com/bazelbuild/rules_go/files/13417624/x-tools.patch)

#### What's Changed

- Test BCR test module on macos_arm64 by
[@&#8203;fmeum](https://togithub.com/fmeum) in
[bazelbuild/rules_go#3715
- update documentation for `0.42.0` release by
[@&#8203;tyler-french](https://togithub.com/tyler-french) in
[bazelbuild/rules_go#3716
- add netrc support to go_download_sdk by
[@&#8203;justinwon777](https://togithub.com/justinwon777) in
[bazelbuild/rules_go#3718
- Temporarily disable Bzlmod explicitly by
[@&#8203;fmeum](https://togithub.com/fmeum) in
[bazelbuild/rules_go#3720
- Fix urls used to get auth in go_download_sdk by
[@&#8203;justinwon777](https://togithub.com/justinwon777) in
[bazelbuild/rules_go#3724
- Include `go.env` in `//go` runfiles by
[@&#8203;fmeum](https://togithub.com/fmeum) in
[bazelbuild/rules_go#3722
- Update arm platform constraint to latest value in bazel. by
[@&#8203;BryanDClark](https://togithub.com/BryanDClark) in
[bazelbuild/rules_go#3734
- Add toolchain param to affected actions by
[@&#8203;kotlaja](https://togithub.com/kotlaja) in
[bazelbuild/rules_go#3740
- upgrade tools by [@&#8203;hawkingrei](https://togithub.com/hawkingrei)
in
[bazelbuild/rules_go#3730
- Also take library deps like srcs into account in go context by
[@&#8203;mering](https://togithub.com/mering) in
[bazelbuild/rules_go#3725
- Add go_cross_binary to README by
[@&#8203;jfirebaugh](https://togithub.com/jfirebaugh) in
[bazelbuild/rules_go#3744
- Update `bazel_features` to v1.1.1 by
[@&#8203;fmeum](https://togithub.com/fmeum) in
[bazelbuild/rules_go#3747
- builder: Make paths absolute for stdliblist
([#&#8203;1357](https://togithub.com/bazelbuild/rules_go/issues/1357))
by [@&#8203;zecke](https://togithub.com/zecke) in
[bazelbuild/rules_go#3748
- feat(gopackagesdriver): add base test case for go packages driver by
[@&#8203;JamyDev](https://togithub.com/JamyDev) in
[bazelbuild/rules_go#3743
- Fix bazel query scope not being used by
[@&#8203;rastenis](https://togithub.com/rastenis) in
[bazelbuild/rules_go#3688
- Add support for `xtest` packages in Go Packages Driver by
[@&#8203;JamyDev](https://togithub.com/JamyDev) in
[bazelbuild/rules_go#3750
- upgrade x/tools to 0.15.0 by
[@&#8203;tyler-french](https://togithub.com/tyler-french) in
[bazelbuild/rules_go#3751
- bug fix: parse embeds in files that contain the double quote rune by
[@&#8203;andyscott](https://togithub.com/andyscott) in
[bazelbuild/rules_go#3672
- prepare release 0.43.0 by
[@&#8203;tyler-french](https://togithub.com/tyler-french) in
[bazelbuild/rules_go#3745

#### New Contributors

- [@&#8203;justinwon777](https://togithub.com/justinwon777) made their
first contribution in
[bazelbuild/rules_go#3718
- [@&#8203;BryanDClark](https://togithub.com/BryanDClark) made their
first contribution in
[bazelbuild/rules_go#3734
- [@&#8203;kotlaja](https://togithub.com/kotlaja) made their first
contribution in
[bazelbuild/rules_go#3740
- [@&#8203;rastenis](https://togithub.com/rastenis) made their first
contribution in
[bazelbuild/rules_go#3688
- [@&#8203;andyscott](https://togithub.com/andyscott) made their first
contribution in
[bazelbuild/rules_go#3672

**Full Changelog**:
bazelbuild/rules_go@v0.42.0...v0.43.0

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.

👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config help](https://togithub.com/renovatebot/renovate/discussions) if
that's undesired.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Renovate
Bot](https://togithub.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNi4xMDAuMCIsInVwZGF0ZWRJblZlciI6IjM2LjEwMC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

Co-authored-by: Self-hosted Renovate Bot <361546+cgrindel-self-hosted-renovate[bot]@users.noreply.github.enterprise.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants