-
Notifications
You must be signed in to change notification settings - Fork 6
34 lines (28 loc) · 767 Bytes
/
c-cpp.yml
File metadata and controls
34 lines (28 loc) · 767 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name: C/C++ CI
on:
push:
branches: [ next ]
pull_request:
branches: [ next ]
jobs:
build:
runs-on: ubuntu-latest
container: pspdev/pspdev:latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
apk add build-base git bash cmake
- name: Compile project
run: make
- name: Prepare artifact folder
run: |
mkdir -p CMFileManagerPSP
cp audio_driver/audio_driver.prx CMFileManagerPSP/
cp display_driver/display_driver.prx CMFileManagerPSP/
cp fs_driver/fs_driver.prx CMFileManagerPSP/
cp app/EBOOT.PBP CMFileManagerPSP/
- uses: actions/upload-artifact@v4
with:
name: CMFileManagerPSP
path: CMFileManagerPSP/