Files
Vita3K/.ci/setup-android.sh
T
KorewaWatchful cf37c74444 ci: overhaul ci
2026-05-21 10:50:42 -04:00

14 lines
280 B
Bash

#!/usr/bin/env bash
set -euo pipefail
sudo apt-get update
sudo apt-get install -y ninja-build
repo_root="$(cd "$(dirname "$0")/.." && pwd)"
pushd "$repo_root" > /dev/null
for triplet in arm64-android x64-android; do
vcpkg install --triplet "$triplet"
done
popd > /dev/null