Add debug_output_enabled parameter to macOS CI workflow#3542
Merged
rnro merged 3 commits intoapple:mainfrom Mar 9, 2026
Merged
Add debug_output_enabled parameter to macOS CI workflow#3542rnro merged 3 commits intoapple:mainfrom
debug_output_enabled parameter to macOS CI workflow#3542rnro merged 3 commits intoapple:mainfrom
Conversation
Motivation * xcodebuild output is suppressed with `-quiet` in the macOS tests workflow, making it hard to diagnose CI failures on the main branch. Modifications * Add a `debug_output_enabled` boolean input to `macos_tests.yml` (defaults to `false`), which controls a `QUIET_ARG` env var used by all xcodebuild invocations. * When `debug_output_enabled` is `true`, `-quiet` is elided and full xcodebuild output is emitted. * Enable `debug_output_enabled` in `main.yml` so nightly and main-branch push builds produce verbose output. Result * PR builds remain concise (default behaviour unchanged). * Main-branch builds now include full xcodebuild output for easier failure triage.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Motivation
-quietin the macOS tests workflow, making it hard to diagnose CI failures on the main branch.Modifications
debug_output_enabledboolean input tomacos_tests.yml(defaults tofalse), which controls aQUIET_ARGenv var used by all xcodebuild invocations.debug_output_enabledistrue,-quietis elided and full xcodebuild output is emitted.debug_output_enabledinmain.ymlso nightly and main-branch push builds produce verbose output.Result