From d8d8d1a2906eb2a084ea2912d2dda1d32ef61dc7 Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Mon, 20 Mar 2023 10:38:26 -0700 Subject: [PATCH] First pass testing vita building --- .github/workflows/build-helloworld-vita.yml | 23 +++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/build-helloworld-vita.yml diff --git a/.github/workflows/build-helloworld-vita.yml b/.github/workflows/build-helloworld-vita.yml new file mode 100644 index 00000000..c01b3ed9 --- /dev/null +++ b/.github/workflows/build-helloworld-vita.yml @@ -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 \ No newline at end of file