blob: a481c872c1b79aba0fb0b7a502088dbc7f0d0355 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# (c) 2023 Jan-Simon Moeller dl9pf(at)gmx.de
# License GPLv2
################################################################################
## Run yocto-check-layer over AGL layers
################################################################################
pushd
# meta-agl
pushd meta-agl
if test -x scripts/ci-yocto-check-layer.sh ; then
./scripts/ci-yocto-check-layer.sh
fi
popd
# meta-agl-demo
pushd meta-agl-demo
if test -x scripts/ci-yocto-check-layer.sh ; then
./scripts/ci-yocto-check-layer.sh
fi
popd
# meta-agl-devel
#pushd meta-agl-devel
# for i in `find . -name "run-yocto-check-layer.sh" | sed -e "s#/scripts/run-yocto-check-layer.sh##g" | sort | uniq` ; do
# pushd $i
# if test -x ./scripts/run-yocto-check-layer.sh ; then
# ./scripts/run-yocto-check-layer.sh
# fi
# popd
# done
#popd
|