From afd1727898c15367f1fec2c8765e0216df4d9a8b Mon Sep 17 00:00:00 2001 From: fgsfds Date: Wed, 8 Mar 2023 19:12:05 +0100 Subject: [PATCH] ci: psvita: only download necessary packages --- scripts/gha/deps_psvita.sh | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/scripts/gha/deps_psvita.sh b/scripts/gha/deps_psvita.sh index 3bcf11bd..86dd67c1 100644 --- a/scripts/gha/deps_psvita.sh +++ b/scripts/gha/deps_psvita.sh @@ -6,10 +6,21 @@ echo "Downloading vitasdk..." export VITASDK=/usr/local/vitasdk +install_package() +{ + vdpm $1 || exit 1 +} + git clone https://github.com/vitasdk/vdpm.git || exit 1 pushd vdpm ./bootstrap-vitasdk.sh || exit 1 -./install-all.sh || exit 1 +install_package taihen +install_package kubridge +install_package libk +install_package zlib +install_package SceShaccCgExt +install_package vitaShaRK +install_package libmathneon popd echo "Downloading vitaGL..."