From b2877ac70d2a81045fad8a210f7bf2cbf60aa308 Mon Sep 17 00:00:00 2001 From: Trevor Gross Date: Thu, 16 Apr 2026 04:03:59 -0400 Subject: [PATCH] ci: Exclude update-api-list from libm tests --- library/compiler-builtins/ci/run.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/library/compiler-builtins/ci/run.sh b/library/compiler-builtins/ci/run.sh index 130daf92b664..93c551dc52ec 100755 --- a/library/compiler-builtins/ci/run.sh +++ b/library/compiler-builtins/ci/run.sh @@ -132,6 +132,9 @@ mflags+=(--no-default-features) # change any implementations. mflags+=(--features unstable-float) +# This is a host program that may not run in containers. +mflags+=(--exclude update-api-list) + # We need to specifically skip tests for musl-math-sys on systems that can't # build musl since otherwise `--all` will activate it. case "$target" in @@ -192,7 +195,7 @@ else # Exclude the macros and utile crates from the rest of the tests to save CI # runtime, they shouldn't have anything feature- or opt-level-dependent. - cmd+=(--exclude util --exclude libm-macros --exclude update-api-list) + cmd+=(--exclude util --exclude libm-macros) # Test once with intrinsics enabled "${cmd[@]}" --features arch,unstable-intrinsics