Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci/base.yml: convert to nodistro #116

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions ci/base.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
header:
version: 14

distro: poky
distro: nodistro

defaults:
repos:
Expand All @@ -15,11 +15,15 @@ repos:
meta-qcom:
url: https://github.com/Linaro/meta-qcom

poky:
url: https://git.yoctoproject.org/git/poky
oe-core:
koenkooi marked this conversation as resolved.
Show resolved Hide resolved
url: https://git.openembedded.org/openembedded-core
layers:
meta:
meta-poky:

bitbake:
url: https://git.openembedded.org/bitbake
layers:
.: excluded

local_conf_header:
base: |
Expand Down
2 changes: 1 addition & 1 deletion ci/yocto-check-layer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ CMD="$CMD $TOPDIR"
# Disable auto layer discovery
CMD="$CMD --no-auto"
# Layers to process for dependencies
CMD="$CMD --dependency $KAS_WORK_DIR/poky/meta $KAS_WORK_DIR/meta-qcom"
CMD="$CMD --dependency $KAS_WORK_DIR/oe-core/meta $KAS_WORK_DIR/meta-qcom"
# Disable automatic testing of dependencies
CMD="$CMD --no-auto-dependency"
# Set machines to all machines defined in this BSP layer
Expand Down
2 changes: 1 addition & 1 deletion ci/yocto-patchreview.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ TOPDIR=$(realpath $(dirname $(readlink -f $0))/..)
export KAS_WORK_DIR=$(realpath ${KAS_WORK_DIR:-$(mktemp -d)})

echo "Running kas in $KAS_WORK_DIR"
kas shell $TOPDIR/ci/base.yml --command "$KAS_WORK_DIR/poky/scripts/contrib/patchreview.py -v -b -j status.json $TOPDIR"
kas shell $TOPDIR/ci/base.yml --command "$KAS_WORK_DIR/oe-core/scripts/contrib/patchreview.py -v -b -j status.json $TOPDIR"

# return an error if any malformed patch is found
cat $KAS_WORK_DIR/build/status.json |
Expand Down
Loading