From 46bb065b7e7449093fc56e86bd1d8b34e87ffc79 Mon Sep 17 00:00:00 2001 From: "Unknown W. Brackets" Date: Tue, 1 Nov 2022 23:37:37 -0700 Subject: [PATCH] Build: Use Makefile for libretro. --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 778b601445..d38a1ac0db 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -168,13 +168,13 @@ jobs: extra: libretro cc: gcc cxx: g++ - args: ./b.sh --libretro + args: make -C libretro -f Makefile -j2 id: gcc-libretro - os: ubuntu-latest extra: libretro cc: clang cxx: clang++ - args: ./b.sh --libretro + args: make -C libretro -f Makefile -j2 id: clang-libretro - os: macos-latest