Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[DNM] Cross-repo testing PR #65101

Draft
wants to merge 3 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
This page describes the overall organization of documentation for the Swift toolchain.
It is divided into the following sections:


- [Tutorials](#tutorials)
gently guide you towards achieving introductory tasks,
while assuming minimal background knowledge.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -891,20 +891,20 @@ def execute_product_build_steps(self, product_class, host_target):
build_dir=build_dir)
if product.should_clean(host_target):
log_message = "Cleaning %s" % product_name
print("--- {} ---".format(log_message))
print("--- {} ---".format(log_message), flush=True)
with log_time_in_scope(log_message):
product.clean(host_target)
if product.should_build(host_target):
log_message = "Building %s" % product_name
print("--- {} ---".format(log_message))
print("--- {} ---".format(log_message), flush=True)
with log_time_in_scope(log_message):
product.build(host_target)
if product.should_test(host_target):
log_message = "Running tests for %s" % product_name
print("--- {} ---".format(log_message))
print("--- {} ---".format(log_message), flush=True)
with log_time_in_scope(log_message):
product.test(host_target)
print("--- Finished tests for %s ---" % product_name)
print("--- Finished tests for %s ---" % product_name, flush=True)
# Install the product if it should be installed specifically, or
# if it should be built and `install_all` is set to True.
# The exception is select before_build_script_impl products
Expand All @@ -914,6 +914,6 @@ def execute_product_build_steps(self, product_class, host_target):
(self.install_all and product.should_build(host_target) and
not product.is_ignore_install_all_product()):
log_message = "Installing %s" % product_name
print("--- {} ---".format(log_message))
print("--- {} ---".format(log_message), flush=True)
with log_time_in_scope(log_message):
product.install(host_target)
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ def run_bootstrap_script(self, action, host_target, additional_params=[]):

helper_cmd.extend(additional_params)

shell.call(helper_cmd)
shell.call(helper_cmd, echo=True)

def build(self, host_target):
self.run_bootstrap_script('build', host_target, ["--reconfigure"])
Expand Down