fix: hmm?

This commit is contained in:
Lucaskyy 2022-06-16 20:53:04 +02:00
parent 928653b284
commit af77ac0826
No known key found for this signature in database
GPG Key ID: 1530BFF96D1EEB89
2 changed files with 7 additions and 3 deletions

View File

@ -1,4 +1,4 @@
name: Build aapt2
name: Build aapt2 binary
on:
push:

View File

@ -4,10 +4,14 @@ function buildAapt() {
--ndk="$NDK_TOOLCHAIN" \
--arch "$arch" \
--build "dist/$arch" \
--target aapt2
--target aapt2 || exit 1
}
echo "Downloading sources.."
echo "Installing dependencies..."
sudo apt-get update
sudo apt-get upgrade -y
sudo apt-get install build-essential unzip nasm cmake ninja-build -y || exit 1
echo "Downloading sources..."
wget https://github.com/Lzhiyong/sdk-tools/releases/download/33.0.1/sdk-tools-source.zip -q -O sdk-tools-source.zip
unzip -q sdk-tools-source.zip
cd sdk-tools-source