Testing vita packages
This commit is contained in:
16
.github/workflows/build-helloworld-vita.yml
vendored
16
.github/workflows/build-helloworld-vita.yml
vendored
@ -5,19 +5,31 @@ on:
|
|||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
env:
|
||||||
|
VITASDK=/usr/local/vitasdk
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
- name: Install Vita Toolchain
|
- name: Install Vita Toolchain
|
||||||
run: |
|
run: |
|
||||||
|
export PATH=$VITASDK/bin:$PATH
|
||||||
sudo apt-get install cmake
|
sudo apt-get install cmake
|
||||||
git clone https://github.com/vitasdk/vdpm
|
git clone https://github.com/vitasdk/vdpm
|
||||||
cd vdpm
|
cd vdpm
|
||||||
./bootstrap-vitasdk.sh
|
./bootstrap-vitasdk.sh
|
||||||
export VITASDK=/usr/local/vitasdk
|
|
||||||
export PATH=$VITASDK/bin:$PATH
|
|
||||||
./install-all.sh
|
./install-all.sh
|
||||||
|
|
||||||
|
- name: Install Vita Packages
|
||||||
|
run: |
|
||||||
|
export PATH=$VITASDK/bin:$PATH
|
||||||
|
git clone https://github.com/vitasdk/packages.git
|
||||||
|
cd packages
|
||||||
|
./build.sh
|
||||||
|
|
||||||
- name: Install Libraries
|
- name: Install Libraries
|
||||||
run: |
|
run: |
|
||||||
|
export PATH=$VITASDK/bin:$PATH
|
||||||
echo "Installing engine libs"
|
echo "Installing engine libs"
|
||||||
git submodule update --init --recursive
|
git submodule update --init --recursive
|
Reference in New Issue
Block a user