Go to file
Ross Burton e37f202d6c config.json: add a builder for meta-webosose
Add a minimal (although still substantial) build of meta-webosose for LG.
Because meta-webosose has complex layer appends and dependencies we need
to manually set BBFILE_PRIORITY and rewrite bblayer.conf to match what
their custom build scripts currently do.

Builds against oe-core master are known to not work at present, but this
will be backported to kirkstone which is the latest supported release.

Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2024-07-10 13:09:48 +01:00
janitor ab-janitor: only rm trashdir files over 60s old 2023-06-15 14:36:11 +01:00
lava resume-lava-jobs: Add lava-job cleanup script 2018-08-30 16:21:51 +01:00
lava-templates lava-templates: Add Jinja2 LAVA job-template on BSP x86_64 2018-08-30 16:21:51 +01:00
scripts scripts: send_qa_email: do not try to generate a regression report when missing base and/or target 2024-07-02 13:11:49 +01:00
.gitignore gitignore: Ignore __pycache__ directories 2022-05-17 09:47:47 +01:00
config-intelqa-x86_64-lava.json config-intelqa-x86_64-lava.json: Add extension to config.json to support BSP 2018-08-30 16:21:51 +01:00
config.json config.json: add a builder for meta-webosose 2024-07-10 13:09:48 +01:00
LICENSE.GPL-2.0-only Add license file 2022-05-17 12:37:51 +01:00
local-example.json utils: Allow customisation using ABHELPER_JSON from the environment 2018-06-20 23:16:10 +01:00
README README: update patch submission address 2024-03-28 17:51:24 +00:00
SECURITY.md SECURITY.md: Add file 2023-10-24 12:58:24 +01:00

This repo is designed to work in conjuction yocto-autobuilder. Whilst yocto-autobuilder is designed to cover all releases, this repo has a branch per release and contains the hooks that do the actual build configuration and execution.

pre-commit-hook.sh can be used to verify the JSON before committing, symlink this to .git/hooks/pre-commit (ln -s ../../scripts/pre-commit-hook.sh .git/hooks/pre-commit).

Its likely most users will end up having to customise this repository for their needs. The scripts themselves should be more generically reusable, the config.json, less so as it represents the Yocto Project Autobuilder test matrix.

There are two customisation options possible, one is through variable substitution, the other is through overlaying configuration files. The standard config.json tries to at least allow substitution of the paths. A local-example.json is included to show how you could override these from a separate config file, simply passing:

ABHELPER_JSON="config.json local-example.json"

into the environment of the autobuilder.

ABHELPER_JSON="config.json /some/location/local.json"

would also allow customisation.

Authors: Richard Purdie richard.purdie@linuxfoundation.org Joshua Lock joshua.g.lock@intel.com

Contributions:

Patches for this code should be sent to the yocto-patches@lists.yoctoproject.org mailing list with [yocto-autobuilder-helper] in the subject. This can be configured automatically for the repository with the following commands:

git config --local --add format.subjectprefix 'yocto-autobuilder-helper][PATCH' git config --local --add sendemail.to yocto-patches@lists.yoctoproject.org