From bfbdf8969e9708c0c4b43052f358dff4d4ead395 Mon Sep 17 00:00:00 2001 From: Wouter Wijsman Date: Tue, 7 Dec 2021 10:00:01 +0100 Subject: [PATCH] Add automated build for PSP --- .github/workflows/psp.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/psp.yaml diff --git a/.github/workflows/psp.yaml b/.github/workflows/psp.yaml new file mode 100644 index 000000000..d745fc665 --- /dev/null +++ b/.github/workflows/psp.yaml @@ -0,0 +1,18 @@ +name: Build (Sony Playstation Portable) + +on: [push, pull_request] + +jobs: + psp: + runs-on: ubuntu-latest + container: pspdev/pspdev:latest + steps: + - uses: actions/checkout@v2 + - name: Setup dependencies + run: | + apk update + apk add cmake gmp mpc1 mpfr4 make + - name: Configure CMake + run: cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=Release -DCMAKE_TOOLCHAIN_FILE=$PSPDEV/psp/share/pspdev.cmake + - name: Build + run: cmake --build build