SDL: CI: Add PS VIta build

From 1e6e9f364e84f1fc6999c0e4090235b224c80546 Mon Sep 17 00:00:00 2001
From: Pierre Wendling <[EMAIL REDACTED]>
Date: Sat, 21 Aug 2021 12:10:37 -0400
Subject: [PATCH] CI: Add PS VIta build

---
 .github/workflows/vita.yaml | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)
 create mode 100644 .github/workflows/vita.yaml

diff --git a/.github/workflows/vita.yaml b/.github/workflows/vita.yaml
new file mode 100644
index 0000000000..16bb7ffb4e
--- /dev/null
+++ b/.github/workflows/vita.yaml
@@ -0,0 +1,22 @@
+name: Build (Sony Playstation Vita)
+
+on: [push, pull_request]
+
+jobs:
+  vita:
+    runs-on: ubuntu-latest
+    container: 
+      image: vitasdk/vitasdk:latest
+    steps:
+    - uses: actions/checkout@v2
+    - name: Install CMake and GNU Make
+      run: |
+        apk update 
+        apk add cmake make
+      shell: sh
+    - name: Configure CMake
+      run: cmake -S. -Bbuild -DCMAKE_TOOLCHAIN_FILE=${VITASDK}/share/vita.toolchain.cmake -DCMAKE_BUILD_TYPE=Release
+      shell: sh
+    - name: Build
+      run: cmake --build build
+      shell: sh