aboutsummaryrefslogtreecommitdiffstats
path: root/jjb/common/include-agl-run-ycl-ci.sh
diff options
context:
space:
mode:
authorJan-Simon Moeller <jsmoeller@linuxfoundation.org>2023-05-11 22:27:14 +0200
committerJan-Simon Moeller <jsmoeller@linuxfoundation.org>2023-06-13 13:51:11 +0200
commita60c1adff153458f3bf9df2e14308d5aa3bd6b5e (patch)
tree1caaef7a0b7706ba754f9643eadd0d10584fe124 /jjb/common/include-agl-run-ycl-ci.sh
parent75b53bcc764c6eae78ed1722c296f4a6896f44b2 (diff)
Octopus and Pike jobs
Add job templates for octopus and pike. Also cleanups. Signed-off-by: Jan-Simon Moeller <jsmoeller@linuxfoundation.org> Change-Id: I9847340a854086273fab07b9895e4a1c66cb4e39
Diffstat (limited to 'jjb/common/include-agl-run-ycl-ci.sh')
-rw-r--r--jjb/common/include-agl-run-ycl-ci.sh35
1 files changed, 35 insertions, 0 deletions
diff --git a/jjb/common/include-agl-run-ycl-ci.sh b/jjb/common/include-agl-run-ycl-ci.sh
new file mode 100644
index 00000000..a481c872
--- /dev/null
+++ b/jjb/common/include-agl-run-ycl-ci.sh
@@ -0,0 +1,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