fix helper script, add helper scripts for checking the build

This commit is contained in:
John
2023-12-26 12:19:52 +01:00
parent 1cdb714b27
commit b320fb6027
5 changed files with 50 additions and 2 deletions
+3
View File
@@ -0,0 +1,3 @@
#!/bin/bash
# helper script to check the build from git master is fine
docker run -it --rm -v $PWD:/build -w /build/contrib/archlinux archlinux sh -c 'pacman -Sy && pacman -Sq fakeroot binutils mosquitto autoconf automake make gcc git && useradd test && su test -c "makepkg -p PKGBUILD.git"'
+3
View File
@@ -0,0 +1,3 @@
#!/bin/bash
# helper script to check the release build is fine
docker run -it --rm -v $PWD:/build -w /build/contrib/archlinux archlinux sh -c 'pacman -Sy && pacman -Sq fakeroot binutils mosquitto autoconf automake make gcc && useradd test && su test -c "makepkg"'