First pass testing vita building
This commit is contained in:
23
.github/workflows/build-helloworld-vita.yml
vendored
Normal file
23
.github/workflows/build-helloworld-vita.yml
vendored
Normal file
@ -0,0 +1,23 @@
|
||||
name: build-helloworld-vita
|
||||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
- name: Install Vita Toolchain
|
||||
run: |
|
||||
sudo apt-get install cmake
|
||||
git clone https://github.com/vitasdk/vdpm
|
||||
cd vdpm
|
||||
./bootstrap-vitasdk.sh
|
||||
export VITASDK=/usr/local/vitasdk
|
||||
export PATH=$VITASDK/bin:$PATH
|
||||
./install-all.sh
|
||||
- name: Install Libraries
|
||||
run: |
|
||||
echo "Installing engine libs"
|
||||
git submodule update --init --recursive
|
Reference in New Issue
Block a user