Skip to content

Commit

Permalink
Added CI
Browse files Browse the repository at this point in the history
  • Loading branch information
fjtrujy committed Oct 29, 2024
1 parent 0041fc5 commit b217d0a
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Build

on:
push:

jobs:
PSP:
runs-on: ubuntu-latest
container: pspdev/pspdev:latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build
run: |
cmake -S . -B build \
-DCMAKE_TOOLCHAIN_FILE=$PSPDEV/psp/share/pspdev.cmake \
-DCMAKE_BUILD_TYPE=RelWithDebInfo
cmake --build build --config RelWithDebInfo
- name: Publish artifacts
uses: actions/upload-artifact@v4
with:
name: libpspme
path: |
build/bin/
build/lib/

0 comments on commit b217d0a

Please sign in to comment.