From 8ad0ca8c174f7d3bafcef4ad1305afae8f2a3a7c Mon Sep 17 00:00:00 2001 From: Alex Hoppen Date: Thu, 6 Mar 2025 14:39:17 -0800 Subject: [PATCH] Remove the documentation verification step This step is now performed by GitHub Actions. --- .../swift_build_support/products/swiftsyntax.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/utils/swift_build_support/swift_build_support/products/swiftsyntax.py b/utils/swift_build_support/swift_build_support/products/swiftsyntax.py index 72254eb471769..4854dc37278a4 100644 --- a/utils/swift_build_support/swift_build_support/products/swiftsyntax.py +++ b/utils/swift_build_support/swift_build_support/products/swiftsyntax.py @@ -11,7 +11,6 @@ # ---------------------------------------------------------------------------- import os -import platform from build_swift.build_swift.constants import MULTIROOT_DATA_FILE_PATH @@ -119,8 +118,6 @@ def build(self, host_target): "verify-source-code", ['--toolchain', self.install_toolchain_path(host_target)] ) - if platform.system() == 'Darwin': - self.run_swift_syntax_dev_utils(host_target, "verify-documentation", []) self.run_swiftsyntax_build_script(target=host_target, command='build')