repo: build with correct platform

This commit is contained in:
Thomas Hobson 2021-03-15 19:16:38 +13:00
parent b02fe3eefb
commit 9c2f562e01
No known key found for this signature in database
GPG Key ID: 9F1FD9D87950DB6F
1 changed files with 2 additions and 2 deletions

View File

@ -23,7 +23,7 @@ do
else
if [[ $BUILD -eq 1 ]]; then
echo "Building package $pkg"
make -j16 $pkg.pkg.tar.gz
make -j16 $pkg.pkg.tar.gz PLATFORM=docker-debian
echo "Done with package $pkg"
elif [[ $CI -eq 1 ]]; then
echo "Commit SHA: $pkg"
@ -36,7 +36,7 @@ do
echo "Building packages: $PACKAGES"
for package in "$PACKAGES"; do
make -j16 $package.pkg.tar.gz
make -j16 $package.pkg.tar.gz PLATFORM=docker-debian
done
else