feat: build packages in build-ci.sh

This commit is contained in:
blek 2023-09-16 12:04:21 +10:00
parent c7de0120ea
commit 5aba56b318
Signed by: blek
GPG Key ID: 14546221E3595D0C
1 changed files with 9 additions and 1 deletions

View File

@ -222,6 +222,14 @@ for pkgdir in $(find $SRC_DIR -maxdepth 1 -mindepth 1 -type d); do
rootexec makechrootpkg -c -r $MAKE_CACHE rootexec makechrootpkg -c -r $MAKE_CACHE
done done
info "\x1b[1;32mAll done!\x1b[0m" info "\x1b[1;32mBuild completed!\x1b[0m"
info "Building the repo..."
for pkg in $(find $SRC_DIR -maxdepth 2 -mindepth 2 -type f | grep -E .tar.zst$); do
cp $pkg $TARGET_DIR/x86_64
done
info "\x1b[1;32mDone!\x1b[0m"