mirror of
https://github.com/shadps4-emu/ext-SDL.git
synced 2024-12-04 09:04:32 +00:00
CI: Add PS VIta build
This commit is contained in:
parent
ce177049f7
commit
1e6e9f364e
22
.github/workflows/vita.yaml
vendored
Normal file
22
.github/workflows/vita.yaml
vendored
Normal file
@ -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
|
Loading…
Reference in New Issue
Block a user