diff --git a/.circleci/config.yml b/.circleci/config.yml index f73a065b6a..ed4ca96a6c 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -8,6 +8,56 @@ jobs: - SDK_FILE: "openwrt-sdk-ar71xx-generic_gcc-7.3.0_musl.Linux-x86_64.tar.xz" - BRANCH: "master" steps: + - checkout: + path: ~/openwrt_packages + + - run: + name: Check changes / verify commits + working_directory: ~/openwrt_packages + command: | + cat >> $BASH_ENV <: ' ($subject)" + RET=1 + fi + + body="$(git show -s --format=%b $commit)" + sob="$(git show -s --format='Signed-off-by: %aN <%aE>' $commit)" + if echo "$body" | grep -qF "$sob"; then + echo_green "Signed-off-by match author" + else + echo_red "Signed-off-by is missing or doesn't match author (should be '$sob')" + RET=1 + fi + done + + exit $RET + - run: name: Download the SDK working_directory: ~/sdk @@ -18,18 +68,15 @@ jobs: curl "$SDK_BASE_URL/$SDK_FILE" -sS -o "$SDK_FILE" sha256sum -c --ignore-missing sha256sums - - checkout: - path: ~/openwrt_packages - - run: name: Prepare build_dir working_directory: ~/build_dir command: | tar Jxf ~/sdk/$SDK_FILE --strip=1 cat > feeds.conf < /dev/null - run: - name: Download & check & compile + name: Download source/check/compile working_directory: ~/build_dir command: | PKGS=$(cd ~/openwrt_packages; git diff --diff-filter=d --name-only "origin/$BRANCH..." | grep 'Makefile$' | grep -v '/files/' | awk -F/ '{ print $(NF-1) }') - echo "Packages: $PKGS" + if [ -z "$PKGS" ] ; then + echo_blue "WARNING: No new or modified packages found!" + exit 0 + fi + + echo_blue "=== Found new/modified packages: $PKGS" for PKG in $PKGS ; do + echo_blue "===+ Download/check: $PKG" make "package/$PKG/download" V=s make "package/$PKG/check" V=s done + for PKG in $PKGS ; do + echo_blue "===+ Building: $PKG" make "package/$PKG/compile" -j3 V=s done