Merge pull request #49 from libretro/fixPS2CI

Fix CI/CD
This commit is contained in:
Francisco Javier Trujillo Mata 2020-07-21 11:58:50 +02:00 committed by GitHub
commit 9244fd8a4f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 5 deletions

View File

@ -11,11 +11,13 @@ jobs:
runs-on: ubuntu-latest
container: ps2dev/ps2dev:latest
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: |
apk add build-base git bash
apk add build-base git zip
- uses: actions/checkout@v2
- run: |
git fetch --prune --unshallow
- name: Compile project
run: |

View File

@ -286,7 +286,7 @@ else ifeq ($(platform), ps2)
TARGET := $(TARGET_NAME)_libretro_$(platform).a
CC = ee-gcc
AR = ee-ar
CFLAGS += -G0 -DABGR1555
CFLAGS += -G0 -DABGR1555 -DPS2
STATIC_LINKING=1
# Playstation PSP

View File

@ -165,7 +165,7 @@ typedef struct
# define PRI_SIZET "u"
# endif
# endif
#elif PS2
#elif defined(PS2)
# define PRI_SIZET "u"
#else
# if (SIZE_MAX == 0xFFFF)