Ryujinx-SDL/.github/workflows/vita.yaml
2021-09-14 16:21:41 -07:00

23 lines
540 B
YAML

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