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

Some minor fixes and cleanups #212

Merged
merged 8 commits into from
Mar 29, 2025
Merged
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
4 changes: 4 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,7 @@ line-length = 120
[tool.isort]
profile = "black"
skip = ["external/"]

[tool.ruff]
line-length = 120
extend-exclude = ["external/", "unittests/recipes"]
30 changes: 7 additions & 23 deletions stackinator/recipe.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,11 @@ def __init__(self, args):
if not self.mount.is_dir():
raise FileNotFoundError(f"the mount point '{self.mount}' must exist")

# required compiler.yaml file
# required compilers.yaml file
compiler_path = self.path / "compilers.yaml"
self._logger.debug(f"opening {compiler_path}")
if not compiler_path.is_file():
raise FileNotFoundError(f"The recipe path '{compiler_path}' does " f"not contain compilers.yaml")
raise FileNotFoundError(f"The recipe path '{compiler_path}' does not contain compilers.yaml")

with compiler_path.open() as fid:
raw = yaml.load(fid, Loader=yaml.Loader)
Expand All @@ -74,7 +74,7 @@ def __init__(self, args):
environments_path = self.path / "environments.yaml"
self._logger.debug(f"opening {environments_path}")
if not environments_path.is_file():
raise FileNotFoundError(f"The recipe path '{environments_path}' does " f" not contain environments.yaml")
raise FileNotFoundError(f"The recipe path '{environments_path}' does not contain environments.yaml")

with environments_path.open() as fid:
raw = yaml.load(fid, Loader=yaml.Loader)
Expand Down Expand Up @@ -102,7 +102,7 @@ def __init__(self, args):
mirrors_path = self.path / "mirrors.yaml"
if mirrors_path.is_file():
self._logger.warning(
"mirrors.yaml have been removed from recipes," " use the --cache option on stack-config instead."
"mirrors.yaml have been removed from recipes, use the --cache option on stack-config instead."
)
raise RuntimeError("Unsupported mirrors.yaml file in recipe.")

Expand Down Expand Up @@ -200,7 +200,7 @@ def config(self):
def config(self, config_path):
self._logger.debug(f"opening {config_path}")
if not config_path.is_file():
raise FileNotFoundError(f"The recipe path '{config_path}' does not contain compilers.yaml")
raise FileNotFoundError(f"The recipe path '{config_path}' does not contain config.yaml")

with config_path.open() as fid:
raw = yaml.load(fid, Loader=yaml.Loader)
Expand Down Expand Up @@ -378,7 +378,7 @@ def generate_environment_specs(self, raw):
environments[name]["view"] = None
for i in range(numviews):
# pick a name for the environment
cname = name if i == 0 else name + f"-{i+1}__"
cname = name if i == 0 else name + f"-{i + 1}__"
if i > 0:
environments[cname] = copy.deepcopy(base)

Expand All @@ -402,7 +402,7 @@ def generate_environment_specs(self, raw):
self.environments = environments

# creates the self.compilers field that describes the full specifications
# for all of teh compilers from the raw compilers.yaml input
# for all of the compilers from the raw compilers.yaml input
def generate_compiler_specs(self, raw):
compilers = {}

Expand All @@ -419,14 +419,6 @@ def generate_compiler_specs(self, raw):
"texinfo",
"gawk",
],
"variants": {
"gcc": "[build_type=Release ~bootstrap +strip]",
"mpc": "[libs=static]",
"gmp": "[libs=static]",
"mpfr": "[libs=static]",
"zstd": "[libs=static]",
"zlib": "[~shared]",
},
}
bootstrap_spec = raw["bootstrap"]["spec"]
bootstrap["specs"] = [
Expand All @@ -449,14 +441,6 @@ def generate_compiler_specs(self, raw):
"texinfo",
"gawk",
],
"variants": {
"gcc": "[build_type=Release +profiled +strip]",
"mpc": "[libs=static]",
"gmp": "[libs=static]",
"mpfr": "[libs=static]",
"zstd": "[libs=static]",
"zlib": "[~shared]",
},
}
gcc["specs"] = raw["gcc"]["specs"]
gcc["requires"] = bootstrap_spec
Expand Down
5 changes: 0 additions & 5 deletions stackinator/templates/Makefile.compilers
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,6 @@ all:{% for compiler in compilers %} {{ compiler }}/generated/build_cache{% endfo

{% endfor %}

# Configure the install location.
{% for compiler in compilers %}{{ compiler }}/config.yaml {% endfor %}: | store
$(SPACK) config --scope=user add config:install_tree:root:$(STORE)

# Configure the install location.
{% for compiler in compilers %}{{ compiler }}/config.yaml {% endfor %}: | store
$(SPACK) config --scope=user add config:install_tree:root:$(STORE)
Expand All @@ -42,7 +38,6 @@ all:{% for compiler in compilers %} {{ compiler }}/generated/build_cache{% endfo
{{ compiler }}/packages.yaml:
$(SPACK) external find --scope=user {% for package in config.packages.external %} {{package}}{% endfor %}


{% endif %}
{% endfor %}
# Configure dependencies between compilers
Expand Down
2 changes: 1 addition & 1 deletion stackinator/templates/compilers.gcc.spack.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ spack:
reuse: false
packages:
gcc:
variants: [build_type=Release +strip]
variants: [build_type=Release +bootstrap +strip]
mpc:
variants: [libs=static]
gmp:
Expand Down
Loading