aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/ci-build.sh
blob: b6f1ddafec8eb398632ad320beed9b3e766e8080 (plain)
1
2
3
4
5
6
7
8
9
10
#! /bin/bash

set -e

CONF=$1
shift 1
IMAGES=$@

( kas shell kas/${CONF}.yml -c "bitbake --setscene-only ${IMAGES}" || true ) | sed -e '/^NOTE: .*Started$/d' -e '/^NOTE: Running /d'
kas shell kas/${CONF}.yml -c "bitbake --skip-setscene ${IMAGES}" | sed -e '/^NOTE: .*Started$/d' -e '/^NOTE: Running /d'