dynapi: Don't use SDL_getenv; it might malloc before the app sets an … #2537
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build (Sony Playstation Vita) | |
on: [push, pull_request] | |
defaults: | |
run: | |
shell: sh | |
jobs: | |
vita: | |
runs-on: ubuntu-latest | |
container: | |
image: vitasdk/vitasdk:latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install CMake and GNU Make | |
run: | | |
apk update | |
apk add cmake make | |
- name: Configure CMake | |
run: cmake -S. -Bbuild -DCMAKE_TOOLCHAIN_FILE=${VITASDK}/share/vita.toolchain.cmake -DCMAKE_BUILD_TYPE=Release | |
- name: Build | |
run: cmake --build build |