We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
GITHUB_ACTIONS=0
1 parent 8fa5fc6 commit 317fa4cCopy full SHA for 317fa4c
src/bootstrap/src/core/build_steps/test.rs
@@ -3146,6 +3146,9 @@ impl Step for Distcheck {
3146
.run(builder);
3147
command(helpers::make(&builder.config.host_target.triple))
3148
.arg("check")
3149
+ // Do not run the build as if we were in CI, otherwise git would be assumed to be
3150
+ // present, but we build from a tarball here
3151
+ .env("GITHUB_ACTIONS", "0")
3152
.current_dir(&plain_src_dir)
3153
3154
0 commit comments