Skip to content

Commit

Permalink
Jenkins: Remove an incorrect assertion
Browse files Browse the repository at this point in the history
This is not true if you eplicitly override the install dir
  • Loading branch information
arichardson committed Aug 11, 2023
1 parent feeb4d8 commit 4033ebe
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions pycheribuild/jenkins.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@

# noinspection PyUnresolvedReferences
from .projects.cross import * # noqa: F401, F403, RUF100
from .projects.project import Project
from .projects.simple_project import SimpleProject
from .targets import Target, target_manager
from .utils import OSInfo, ThreadJoiner, fatal_error, init_global_config, status_update, warning_message
Expand Down Expand Up @@ -258,9 +257,6 @@ def build_target(cheri_config, target: Target) -> None:
project = target.get_or_create_project(None, cheri_config, caller=None)
assert project
_ = project.all_dependency_names(cheri_config) # Ensure dependencies are cached.
if isinstance(project, Project):
assert project.real_install_root_dir == Path(f"{cheri_config.output_root}{cheri_config.installation_prefix}")

if cheri_config.debug_output:
status_update("Configuration options for building", project.target, file=sys.stderr)
for attr in dir(project):
Expand Down

0 comments on commit 4033ebe

Please sign in to comment.