Move build-and-test-* to builder/

This commit is contained in:
Dmitry Maksyoma
2021-02-28 21:28:14 +13:00
parent 5e5467a3b0
commit 6d0a020f4f
2 changed files with 0 additions and 0 deletions

16
builder/build-and-test-rpm Executable file
View File

@@ -0,0 +1,16 @@
#!/bin/bash
set -e
os="$1"
codename="$2"
if [[ -z "$os" ]] || [[ -z "$codename" ]]; then
echo "Usage: $0 <os> <codename>" >&2
exit 1
fi
cd "$(dirname "$0")"
./build-tarball "$os" "$codename" && ./build-rpm "$os" "$codename" && \
./test-rpm "$os" "$codename"