* Add RHEL image * Use Fedora config for RHEL * Use script to activate RHEL * Mirror mount args * Set RHEL username and password * Pass RHEL build args * Pass RHEL login by file * Use RHEL 9 for newer Python * Source RHEL login * Add case for RHEL Python deps * Add `--deactivate` * Do PIP user install * Upgrade PIP * Add RHEL config * Introduce 'command-pre' * Inherit fedora deps for RHEL and only strip sudo on non-empty command * Add RHEL 9 runner * Use RHEL 9 codeready * Add AlmaLinux EL9 * Add support for RHEL-like * Add EPEL for Alma * Enable power tools on Alma * Fix missing semicolon * Install EPEL before power tools * Inherit Alma deps from RHEL * Switch from `powertools` to `crb` * Abandon RHEL for now (no Qt 6 support) * Don't pass required when getting distro key * Correct key name for Rocky Linux * Add Repology badge * Restore original `build-push-action` * Exclude unsupported Repology entries * Update ChangeLog
93 lines
3.0 KiB
Python
93 lines
3.0 KiB
Python
import yaml
|
|
import lib.env as env
|
|
import lib.cmd_utils as cmd_utils
|
|
|
|
config_file = "config.yaml"
|
|
root_key = "config"
|
|
deps_key = "dependencies"
|
|
command_key = "command"
|
|
command_pre_key = "command-pre"
|
|
arrow = " ➤ "
|
|
|
|
|
|
class ConfigKeyError(RuntimeError):
|
|
def __init__(self, config_file, key):
|
|
self.config_file = config_file
|
|
self.key = key
|
|
|
|
def __str__(self):
|
|
return f"Not found in {self.config_file}: {self.key}"
|
|
|
|
|
|
def _get(dict, key, key_parent=None, required=True):
|
|
value = dict.get(key)
|
|
|
|
if required and not value:
|
|
key_path = f"{root_key}{arrow}{key_parent}{arrow}{key}" if key_parent else key
|
|
raise ConfigKeyError(config_file, key_path)
|
|
|
|
return value
|
|
|
|
|
|
class Config:
|
|
"""Reads the project configuration YAML file."""
|
|
|
|
def __init__(self):
|
|
|
|
with open(config_file, "r") as f:
|
|
data = yaml.safe_load(f)
|
|
|
|
self.os_name = env.get_os()
|
|
|
|
print("Config for OS:", self.os_name)
|
|
root = _get(data, root_key)
|
|
self.os = _get(root, self.os_name)
|
|
|
|
def get_os_value(self, key, required=True, linux_distro=None):
|
|
if linux_distro:
|
|
# recurse with the linux distro as the key parameter to get the base distro key.
|
|
distro = self.get_os_value(key=linux_distro)
|
|
return _get(distro, key, f"{self.os_name}{arrow}{linux_distro}", required)
|
|
else:
|
|
return _get(self.os, key, self.os_name, required)
|
|
|
|
def get_qt_config(self):
|
|
qt_key = "qt"
|
|
qt = self.get_os_deps_value(qt_key)
|
|
|
|
parent_key = f"{self.os_name}{arrow}{deps_key}"
|
|
mirror_url = _get(qt, "mirror", parent_key)
|
|
version = _get(qt, "version", parent_key)
|
|
base_dir = _get(qt, "base-dir", parent_key)
|
|
modules = _get(qt, "modules", parent_key, required=False)
|
|
|
|
return mirror_url, version, base_dir, modules
|
|
|
|
def get_os_deps_value(self, key, required=True, linux_distro=None):
|
|
deps = self.get_os_value(deps_key, required, linux_distro)
|
|
if linux_distro:
|
|
key_parent = f"{self.os_name}{arrow}{linux_distro}{arrow}{deps_key}"
|
|
else:
|
|
key_parent = f"{self.os_name}{arrow}{deps_key}"
|
|
return _get(deps, key, key_parent, required)
|
|
|
|
def get_os_deps_command(self, key=command_key, required=True, linux_distro=None):
|
|
command = self.get_os_deps_value(key, required, linux_distro)
|
|
if command:
|
|
return cmd_utils.strip_continuation_sequences(command)
|
|
else:
|
|
return None
|
|
|
|
def get_os_deps_command_pre(self, required=True, linux_distro=None):
|
|
return self.get_os_deps_command(command_pre_key, required, linux_distro)
|
|
|
|
def get_windows_ci_config(self):
|
|
choco_ci_key = "ci"
|
|
choco_ci = self.get_os_deps_value(choco_ci_key)
|
|
|
|
choco_ci_path = f"{self.os_name}{arrow}{deps_key}{arrow}{choco_ci_key}"
|
|
edit_config = _get(choco_ci, "edit-config", choco_ci_path)
|
|
skip_packages = _get(choco_ci, "skip-packages", choco_ci_path)
|
|
|
|
return edit_config, skip_packages
|