meta data for this page
  •  

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
sw:yocto:bitbake:ci [2025/06/11 12:13] – created niziaksw:yocto:bitbake:ci [2025/06/11 12:22] (current) niziak
Line 18: Line 18:
   * PREFERRED_VERSION_my_app = "latest" ?   * PREFERRED_VERSION_my_app = "latest" ?
     * create new meta layer for CI and      * create new meta layer for CI and 
- 
  
   * Possible to pass env variables to bitbake: [[https://wiki.niziak.spox.org/sw:yocto:bitbake:tips#pass_env_variables_to_bitbake]]   * Possible to pass env variables to bitbake: [[https://wiki.niziak.spox.org/sw:yocto:bitbake:tips#pass_env_variables_to_bitbake]]
Line 27: Line 26:
 where config file [[https://github.com/bradfa/meta-yocto/blob/master/meta-yocto/conf/distro/include/poky-floating-revisions.inc|poky-floating-revisions.inc]] where config file [[https://github.com/bradfa/meta-yocto/blob/master/meta-yocto/conf/distro/include/poky-floating-revisions.inc|poky-floating-revisions.inc]]
 is used: is used:
 +
 <file bash poky-floating-revisions.inc> <file bash poky-floating-revisions.inc>
 SRCREV_pn-oh-puzzles ?= "${AUTOREV}" SRCREV_pn-oh-puzzles ?= "${AUTOREV}"
Line 33: Line 33:
 </file> </file>
  
-See[[https://docs.yoctoproject.org/dev-manual/external-scm.html#using-an-external-scm|Using an External SCM]]+In latest Yocto it looks like: 
 + 
 +<file bash poky-floating-revisions.inc> 
 +# 
 +# Set recipe versions to auto-rev for cutting edge testing 
 +
 + 
 +INHERIT += "poky-bleeding" 
 + 
 +POKY_AUTOREV_RECIPES = "\ 
 +    libmatchbox \ 
 +    opkg-utils \ 
 +    matchbox-config-gtk \ 
 +    matchbox-desktop \ 
 +    matchbox-keyboard \ 
 +    matchbox-panel-2 \ 
 +    matchbox-terminal \ 
 +    matchbox-theme-sato \ 
 +    matchbox-wm \ 
 +    pseudo \ 
 +    puzzles \ 
 +    sato-icon-theme \ 
 +    sato-screenshot \ 
 +    settings-daemon \ 
 +
 +</file>
  
 +  * See: [[https://docs.yoctoproject.org/dev-manual/external-scm.html#using-an-external-scm|Using an External SCM]]
 +  * See: [[https://docs.yoctoproject.org/dev-manual/build-quality.html#build-history-package-information|Build History Package Information]]