Testing iteration on vars
This commit is contained in:
15
.github/workflows/build-helloworld-vita.yml
vendored
15
.github/workflows/build-helloworld-vita.yml
vendored
@ -26,7 +26,20 @@ jobs:
|
|||||||
export PATH=$VITASDK/bin:$PATH
|
export PATH=$VITASDK/bin:$PATH
|
||||||
git clone https://github.com/vitasdk/packages.git
|
git clone https://github.com/vitasdk/packages.git
|
||||||
cd packages
|
cd packages
|
||||||
./build.sh
|
|
||||||
|
dir_array=(
|
||||||
|
"vitaGL"
|
||||||
|
)
|
||||||
|
curdir=$(pwd)
|
||||||
|
for d in "${dir_array[@]}";do
|
||||||
|
echo "${curdir}${d}"
|
||||||
|
cd "${curdir}${d}
|
||||||
|
vita-makepkg -C -f -d
|
||||||
|
tar -C $VITASDK/arm-vita-eabi/ -xvf *-arm.tar.xz
|
||||||
|
done
|
||||||
|
|
||||||
|
|
||||||
|
cd vitaGL
|
||||||
|
|
||||||
- name: Install Libraries
|
- name: Install Libraries
|
||||||
run: |
|
run: |
|
||||||
|
Reference in New Issue
Block a user