bitbake-listvars: add bitbake path to args #45
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "push" | |
on: push | |
jobs: | |
qemux86: | |
name: "qemux86 with standard options" | |
env: | |
MACHINE: qemux86 | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
module: [ | |
auto-inherit, | |
hashdog, | |
kconfig-sanity, | |
layer-safety, | |
license-report, | |
python3-package-ident, | |
python-speedups, | |
rm_orphans, | |
rootfs-chart, | |
swinventory, | |
upstream-check, | |
license-check | |
] | |
branch: [dunfell, gatesgarth, hardknott, kirkstone, langdale, mickledore, nanbield, scarthgap, styhead, master] | |
steps: | |
- uses: actions/checkout@v1 | |
with: | |
ref: master | |
- name: Update APT | |
run: sudo apt-get update | |
- name: Install Dependencies | |
run: sudo apt-get -yq --no-install-suggests --no-install-recommends install build-essential chrpath diffstat gawk gcc-multilib git-core libsdl1.2-dev socat texinfo unzip wget xterm | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.9' | |
- name: Check out poky | |
run: git clone git://git.yoctoproject.org/poky.git/ -b ${{ matrix.branch }} poky | |
- name: Setup poky | |
run: source poky/oe-init-build-env | |
- name: add meta-buildutils | |
run: | | |
source poky/oe-init-build-env | |
bitbake-layers add-layer $(pwd)/.. | |
- name: prepare local.conf | |
run: | | |
source poky/oe-init-build-env | |
echo 'INHERIT += "${{ matrix.testset }}"' >> conf/local.conf | |
- name: Bitbake parse | |
run: | | |
source poky/oe-init-build-env | |
bitbake -p | |