* Do some better linting * Update names, Packer version, and more * Do not lint on push * More linting and scripting * Cleanup shellcheck lint * Add Packer format check * Fix Packer formatting * Limit to only one * Remove generated HCL files * Only lint checked files * Use pipes instead * Improve attempt to build Actually go back to attempting to build boxes on GitHub. Maybe it will work better with this structure * Change to using environment files * Initialize plugins, first * More verbose usage of the file * Do the output properly this time * PACKER_LOG set to 1 * No need for python3 anymore * Limit to only one result * Choose a specific CPU model * Init separately * Update actions version * Add version outputting * Correct actions version * Try to execute qemu properly * Fix CPU model name * Do not over-subscribe GitHub runners * Try type instead of command to guard runs * Do not write to non-existent folder * Cache packer plugins * Use ~ instead of /home/greg * Try the proper path * Move to intelligent matrix * Set global env path * Add lots of waits for VBoxManage on hosted runners * Add more waits * Add more waits
41 lines
987 B
Python
41 lines
987 B
Python
from provider import Provider
|
|
|
|
|
|
class Build:
|
|
def __init__(self, distro, version, provider: Provider):
|
|
self.distro: str = distro
|
|
self.version: str = str(version)
|
|
self.provider: Provider = provider
|
|
|
|
@property
|
|
def var_file(self):
|
|
return f"-var-file={self.var_path}"
|
|
|
|
@property
|
|
def matrix(self):
|
|
return {
|
|
"builder": str(self.provider),
|
|
"distro": self.var_path,
|
|
"runner": self.provider.runner,
|
|
}
|
|
|
|
@property
|
|
def is_github(self) -> bool:
|
|
if self.provider.runner is not None:
|
|
return True
|
|
return False
|
|
|
|
@property
|
|
def var_path(self):
|
|
return f"distros/{self.distro}/{self.version}/{self.provider.arch}.pkrvars.hcl"
|
|
|
|
@property
|
|
def only(self):
|
|
return f"-only={self.provider}"
|
|
|
|
def __str__(self) -> str:
|
|
return f"{self.distro} {self.version}: {self.provider}"
|
|
|
|
def __repr__(self) -> str:
|
|
return str(self)
|