Skip to content

Commit

Permalink
[tests] Show verbose output if compilation fails
Browse files Browse the repository at this point in the history
  • Loading branch information
nemesifier committed Apr 9, 2024
1 parent b5a5bb7 commit 6a64ecc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions runbuild
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,11 @@ echo "CONFIG_PACKAGE_openwisp-config=y" >>.config
make defconfig

if [ ! "$CI_CACHE" ]; then
make -j"$CORES" tools/install
make -j"$CORES" toolchain/install
make -j"$CORES" tools/install || make -j1 V=s tools/install
make -j"$CORES" toolchain/install || make -j1 V=s toolchain/install
fi

make -j"$CORES" package/openwisp-config/compile || exit 1
make -j"$CORES" package/openwisp-config/compile || make -j1 V=s package/openwisp-config/compile || exit 1

mv "$BUILD_DIR"/openwrt/bin/packages/"$COMPILE_TARGET"/openwisp "$VERSIONED_DIR"

Expand Down

0 comments on commit 6a64ecc

Please sign in to comment.