From c2d0a2d7ee90bb18a356d37b22717d61e9863543 Mon Sep 17 00:00:00 2001 From: Doug Date: Thu, 5 Mar 2026 17:08:54 +0000 Subject: [PATCH] Fix the post-build command. --- Tools/Sources/Commands/CI/CI.swift | 3 ++- ci_scripts/ci_post_xcodebuild.sh | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Tools/Sources/Commands/CI/CI.swift b/Tools/Sources/Commands/CI/CI.swift index 86f39624d..1610c3e2e 100644 --- a/Tools/Sources/Commands/CI/CI.swift +++ b/Tools/Sources/Commands/CI/CI.swift @@ -13,7 +13,8 @@ struct CI: ParsableCommand { RunTests.self, ConfigureNightly.self, ConfigureProduction.self, - TagNightly.self + TagNightly.self, + UploadDSYMs.self ]) static let testOutputDirectory = "test_output" diff --git a/ci_scripts/ci_post_xcodebuild.sh b/ci_scripts/ci_post_xcodebuild.sh index 14dad89d5..c98ed8712 100755 --- a/ci_scripts/ci_post_xcodebuild.sh +++ b/ci_scripts/ci_post_xcodebuild.sh @@ -9,7 +9,7 @@ fetch_unshallow_repository # Upload dsyms no matter the workflow # Perform this step before releasing to github in case it fails. -swift run -q tools upload-dsyms --dsym-path "$CI_ARCHIVE_PATH/dSYMs" +swift run -q tools ci upload-dsyms --dsym-path "$CI_ARCHIVE_PATH/dSYMs" generate_what_to_test_notes