aboutsummaryrefslogtreecommitdiff
path: root/.circleci
diff options
context:
space:
mode:
authorTed Hess <thess@kitschensync.net>2018-12-08 17:12:08 -0500
committerTed Hess <thess@kitschensync.net>2018-12-09 10:37:30 -0500
commite6e7b5211a76472a8b56a1b554e62225bd563532 (patch)
tree50482aef18fb224b0d7662772d6800ca5147ee88 /.circleci
parente81189e983771e37672bc34cb9b3c33da05eae47 (diff)
CircleCI: Add package checks and HASH verify from Travis. Fix build log generation.
Signed-off-by: Ted Hess <thess@kitschensync.net>
Diffstat (limited to '.circleci')
-rw-r--r--.circleci/config.yml27
1 files changed, 22 insertions, 5 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
index 8a8bef1c5..854dd619a 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -79,14 +79,14 @@ jobs:
src-git luci https://github.com/openwrt/luci.git;$BRANCH
EOF
cat feeds.conf
- # enable BUILD_LOG
- sed -i '1s/^/config BUILD_LOG\n\tbool\n\tdefault y\n\n/' Config-build.in
./scripts/feeds update -a > /dev/null
./scripts/feeds install -a > /dev/null
make defconfig > /dev/null
+ # enable BUILD_LOG
+ sed -i 's/# CONFIG_BUILD_LOG is not set/CONFIG_BUILD_LOG=y/' .config
- run:
- name: Download source/check/compile
+ name: Download source, check package, compile
working_directory: ~/build_dir
command: |
set +o pipefail
@@ -98,9 +98,26 @@ jobs:
echo_blue "=== Found new/modified packages: $PKGS"
for PKG in $PKGS ; do
- echo_blue "===+ Download/check: $PKG"
+ echo_blue "===+ Download: $PKG"
make "package/$PKG/download" V=s
- make "package/$PKG/check" V=s
+
+ echo_blue "===+ Check package: $PKG"
+ make "package/$PKG/check" V=s 2>&1 | tee logtmp
+ RET=${PIPESTATUS[0]}
+
+ if [ $RET -ne 0 ]; then
+ echo_red "=> Package check failed: $RET)"
+ exit $RET
+ fi
+
+ badhash_msg="HASH does not match "
+ badhash_msg+="|HASH uses deprecated hash,"
+ badhash_msg+="|HASH is missing,"
+ if grep -qE "$badhash_msg" logtmp; then
+ echo_red "=> Package HASH check failed"
+ exit 1
+ fi
+ echo_green "=> Package check OK"
done
for PKG in $PKGS ; do