Skip to content

Add verbosity when building swiftpm #79330

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

Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,14 @@ def run_bootstrap_script(
shell.call(helper_cmd)

def build(self, host_target):
self.run_bootstrap_script('build', host_target, ["--reconfigure"])
self.run_bootstrap_script(
'build',
host_target,
additional_params=[
"--reconfigure",
"--verbose",
],
)

def should_test(self, host_target):
return self.args.test_swiftpm
Expand All @@ -128,6 +135,9 @@ def test(self, host_target):
'test',
host_target,
compile_only_for_running_host_architecture=True,
additional_params=[
'--verbose'
]
)

def should_clean(self, host_target):
Expand All @@ -144,6 +154,7 @@ def install(self, host_target):
install_prefix = install_destdir + self.args.install_prefix

self.run_bootstrap_script('install', host_target, [
'--verbose',
'--prefix', install_prefix
])

Expand Down