[riot-notifications] [RIOT-OS/RIOT] .murdock: run Kconfig compilation first when needed (#15419)
Alexandre Abadie
notifications at github.com
Tue Nov 17 11:47:32 CET 2020
@aabadie commented on this pull request.
> + # resolution for regression purposes. $TEST_KCONFIG contains a
+ # list of board-application tuples that are currently modeled to
+ # run with Kconfig
+
+ should_check_kconfig_hash=0
+
+ for app in $(get_kconfig_test_apps "${board}")
+ do
+ if [ "${appdir}" = "${app}" ]; then
+ should_check_kconfig_hash=1
+ BOARD=$board make -C${appdir} clean
+ CCACHE_BASEDIR="$(pwd)" BOARD=$board TOOLCHAIN=$toolchain RIOT_CI_BUILD=1 TEST_KCONFIG=1 \
+ make -C${appdir} all test-input-hash -j${JOBS:-4}
+ RES=$?
+ if [ $RES -eq 0 ]; then
+ kconfig_test_hash=$(test_hash_calc "$BINDIR")
```suggestion
kconfig_test_hash=$(test_hash_calc "${BINDIR}")
```
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/RIOT-OS/RIOT/pull/15419#pullrequestreview-532237668
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.riot-os.org/pipermail/notifications/attachments/20201117/4df3b02f/attachment.htm>
More information about the notifications
mailing list