void-packages/common/travis/build.sh

21 lines
309 B
Bash
Raw Normal View History

#!/bin/sh
#
# build.sh
2015-04-15 09:23:37 +00:00
if [ "$1" != "$2" ]; then
arch="-a $2"
fi
if [ "$3" = 1 ]; then
test="-Q"
fi
PKGS=$(/hostrepo/xbps-src sort-dependencies $(cat /tmp/templates))
2020-01-29 22:28:40 +00:00
for pkg in ${PKGS}; do
2022-03-09 21:12:40 +00:00
/hostrepo/xbps-src -j$(nproc) -s -H "$HOME"/hostdir $arch $test pkg "$pkg"
[ $? -eq 1 ] && exit 1
done
exit 0