commit
8a24786317
|
@ -10,6 +10,7 @@ env:
|
|||
- PATH=$PATH:$HOME/bin
|
||||
|
||||
matrix:
|
||||
- XLINT=1
|
||||
- ARCH=x86_64 BOOTSTRAP=x86_64
|
||||
- ARCH=i686 BOOTSTRAP=i686
|
||||
- ARCH=armv6hf BOOTSTRAP=x86_64
|
||||
|
|
|
@ -2,4 +2,6 @@
|
|||
#
|
||||
# bootstrap.sh
|
||||
|
||||
[ "$XLINT" ] && exit 0
|
||||
|
||||
./xbps-src -H $HOME/hostdir binary-bootstrap $1
|
||||
|
|
|
@ -2,6 +2,8 @@
|
|||
#
|
||||
# build.sh
|
||||
|
||||
[ "$XLINT" ] && exit 0
|
||||
|
||||
if [ "$1" != "$2" ]; then
|
||||
arch="-a $2"
|
||||
fi
|
||||
|
|
|
@ -2,6 +2,8 @@
|
|||
#
|
||||
# show_files.sh
|
||||
|
||||
[ "$XLINT" ] && exit 0
|
||||
|
||||
if [ "$1" != "$2" ]; then
|
||||
arch="-a $2"
|
||||
fi
|
||||
|
|
|
@ -2,4 +2,6 @@
|
|||
#
|
||||
# xlint.sh
|
||||
|
||||
[ "$XLINT" ] || exit 0
|
||||
|
||||
awk '{ print "srcpkgs/" $0 "/template" }' /tmp/templates | xargs xlint
|
||||
|
|
Loading…
Reference in New Issue