46e57ff1eb
Also, use emmalloc instead of CC0 dlmalloc when bundling wasi-libc. Resolves: RHEL-12965
31 lines
1.3 KiB
Diff
31 lines
1.3 KiB
Diff
From 35187c7e6474d346eea3113c4ae34d26d6b18756 Mon Sep 17 00:00:00 2001
|
|
From: Josh Stone <jistone@redhat.com>
|
|
Date: Tue, 22 Aug 2023 10:42:12 -0700
|
|
Subject: [PATCH] Skip ExpandYamlAnchors when the config is missing
|
|
|
|
The dist-src tarball does not include `.github/` at all, so we can't
|
|
check whether it needs to be regenerated.
|
|
---
|
|
src/bootstrap/test.rs | 5 +++++
|
|
1 file changed, 5 insertions(+)
|
|
|
|
diff --git a/src/bootstrap/test.rs b/src/bootstrap/test.rs
|
|
index db3b7ffbea4e..d1018978f78c 100644
|
|
--- a/src/bootstrap/test.rs
|
|
+++ b/src/bootstrap/test.rs
|
|
@@ -1174,6 +1174,11 @@ impl Step for ExpandYamlAnchors {
|
|
/// appropriate configuration for all our CI providers. This step ensures the tool was called
|
|
/// by the user before committing CI changes.
|
|
fn run(self, builder: &Builder<'_>) {
|
|
+ // Note: `.github/` is not included in dist-src tarballs
|
|
+ if !builder.src.join(".github/workflows/ci.yml").exists() {
|
|
+ builder.info("Skipping YAML anchors check: GitHub Actions config not found");
|
|
+ return;
|
|
+ }
|
|
builder.info("Ensuring the YAML anchors in the GitHub Actions config were expanded");
|
|
builder.run_delaying_failure(
|
|
&mut builder.tool_cmd(Tool::ExpandYamlAnchors).arg("check").arg(&builder.src),
|
|
--
|
|
2.41.0
|
|
|