summaryrefslogtreecommitdiffstats
path: root/templates/feature/agl-ci-change-features-nogfx
AgeCommit message (Collapse)AuthorFilesLines
2019-06-10feature/agl-ci-*: include agl-pipewire instead of agl-audio-4a-frameworkGeorge Kiagiadakis1-1/+1
Bug-AGL: SPEC-2473 Change-Id: I2ff9ec3f5a55b32737c858c5eb2e835b582af0e4 Signed-off-by: George Kiagiadakis <george.kiagiadakis@collabora.com>
2018-11-22Add ptest to ci and snapshot buildsJan-Simon Möller1-1/+1
Now we are able to run the ptest's , thus add them to the build Change-Id: I9779625065a893a03b87b913569ed0699d85ed5e Signed-off-by: Jan-Simon Möller <jsmoeller@linuxfoundation.org>
2018-07-28Introduce buildstat summary for CI buildsJan-Simon Möller1-1/+1
To check the sstate-reuse, print out the buildstat summary at the end. Change-Id: I64fa1591ade5f61dd3c7a2b51ebdb7afd9326de0 Signed-off-by: Jan-Simon Möller <jsmoeller@linuxfoundation.org>
2018-07-12Enable agl-audio-4a-framework in CIJan-Simon Möller1-1/+1
Use the 4a feature in gerrit (ci-change) and snapshot builds. Change-Id: I1d0550a2f1759388dc658f0951a51c3183ca7662 Signed-off-by: Jan-Simon Möller <jsmoeller@linuxfoundation.org>
2018-04-20Introduce meta-agl-profile-core and meta-agl-profile-graphicsJan-Simon Möller1-1/+1
Rework towards agl profiles. This change is part of a series of changes to create the AGL profiles. This set will mainly introduce the 'core' profile. It is setup to be a drop-in change, thus some files were kept in (dummy) locations for now. However, they'll be taken care of in the next changes in this series. The main target of the meta-agl-profile-core layer is to host: - a minimal, bootable image with network and package management enabled -- agl-image-boot - a minimal image with network and packagemanagement and the AGL APIs -- agl-image-minimal The layer meta-agl-profile-graphical is used as superset of these and includes support for egl+wayland+weston. All recipes concerning graphics were moved there. This is not a full profile as we still have to migrate some parts of meta-agl-demo in a follow-up changeset. The roadmap as discussed during the F2F session in Karlsruhe is: - week 16 : core profile and profiles w/o graphics - week 17 : graphical profiles - week 18 : final conversion of the demo image v2: moved agl-login-manager from -graphics to -core (see Jose's comment) v3: moved back after discussion - follow-up in separate changeset Change-Id: Idacb0d1274baac1f63f8d1b850d4b1104ac33918 Signed-off-by: Jan-Simon Möller <jsmoeller@linuxfoundation.org>
2017-04-28Remove sota from agl-ci-change-featuresJan-Simon Möller1-0/+1
This will temporarily remove sota from the CI builds. It remains in agl-all-features. Change-Id: I73219bc7dd782abac503858e4eb450f0e532c1c9 Bug-AGL: SPEC-557 Signed-off-by: Jan-Simon Möller <jsmoeller@linuxfoundation.org> Reviewed-on: https://gerrit.automotivelinux.org/gerrit/9277 Tested-by: Jenkins Job builder account <agl-jobbuilder@automotivelinux.org> ci-image-build: Jenkins Job builder account <agl-jobbuilder@automotivelinux.org> ci-image-boot-test: Jenkins Job builder account <agl-jobbuilder@automotivelinux.org>
ou may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, something express or implied. * See the License for the specific language governing permissions and * limitations under the License. * * Reference: * Json load using json_unpack https://jansson.readthedocs.io/en/2.9/apiref.html#parsing-and-validating-values */ #ifndef _CTL_CONFIG_INCLUDE_ #define _CTL_CONFIG_INCLUDE_ #define _GNU_SOURCE #include "ctl-plugin.h" #include <filescan-utils.h> #include <wrap-json.h> #ifndef CONTROL_MAXPATH_LEN #define CONTROL_MAXPATH_LEN 255 #endif #ifndef CONTROL_CONFIG_PRE #define CONTROL_CONFIG_PRE "onload" #endif #ifndef CTL_PLUGIN_EXT #define CTL_PLUGIN_EXT ".ctlso" #endif typedef struct ConfigSectionS { const char *key; const char *label; const char *info; int (*loadCB)(AFB_ApiT apihandle, struct ConfigSectionS *section, json_object *sectionJ); void *handle; CtlActionT *actions; } CtlSectionT; typedef struct { const char* api; const char* label; const char *info; const char *version; json_object *configJ; json_object *requireJ; CtlSectionT *sections; } CtlConfigT; #ifdef CONTROL_SUPPORT_LUA #include "ctl-lua.h" #endif // This should not be global as application may want to define their own sections typedef enum { CTL_SECTION_PLUGIN, CTL_SECTION_ONLOAD, CTL_SECTION_CONTROL, CTL_SECTION_EVENT, CTL_SECTION_HAL, CTL_SECTION_ENDTAG, } SectionEnumT; // ctl-action.c PUBLIC CtlActionT *ActionConfig(AFB_ApiT apiHandle, json_object *actionsJ, int exportApi); PUBLIC void ActionExecOne( CtlSourceT *source, CtlActionT* action, json_object *queryJ); PUBLIC int ActionLoadOne(AFB_ApiT apiHandle, CtlActionT *action, json_object *, int exportApi); PUBLIC int ActionLabelToIndex(CtlActionT* actions, const char* actionLabel); // ctl-config.c PUBLIC int CtlConfigMagicNew(); PUBLIC json_object* CtlConfigScan(const char *dirList, const char *prefix) ; PUBLIC char* CtlConfigSearch(AFB_ApiT apiHandle, const char *dirList, const char *prefix) ; PUBLIC int CtlConfigExec(AFB_ApiT apiHandle, CtlConfigT *ctlConfig) ; PUBLIC CtlConfigT *CtlLoadMetaData(AFB_ApiT apiHandle,const char* filepath) ; PUBLIC int CtlLoadSections(AFB_ApiT apiHandle, CtlConfigT *ctlHandle, CtlSectionT *sections); // ctl-event.c PUBLIC int EventConfig(AFB_ApiT apihandle, CtlSectionT *section, json_object *actionsJ); #ifdef AFB_BINDING_PREV3 PUBLIC void CtrlDispatchApiEvent (AFB_ApiT apiHandle, const char *evtLabel, struct json_object *eventJ); #else PUBLIC void CtrlDispatchV2Event(const char *evtLabel, json_object *eventJ); #endif // ctl-control.c PUBLIC int ControlConfig(AFB_ApiT apiHandle, CtlSectionT *section, json_object *actionsJ); // ctl-onload.c PUBLIC int OnloadConfig(AFB_ApiT apiHandle, CtlSectionT *section, json_object *actionsJ); // ctl-plugin.c PUBLIC int PluginConfig(AFB_ApiT UNUSED_ARG(apiHandle), CtlSectionT *section, json_object *pluginsJ); PUBLIC int PluginGetCB (AFB_ApiT apiHandle, CtlActionT *action , json_object *callbackJ); #endif /* _CTL_CONFIG_INCLUDE_ */