Skip to content

Commit 396575e

Browse files
committed
Fix CI/CD
1 parent 6a8c7f9 commit 396575e

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/compilation.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,24 @@ jobs:
3030
make -j $(getconf _NPROCESSORS_ONLN)
3131
make install
3232
33+
- name: Compile masp
34+
run: |
35+
git clone https://github.com/fjtrujy/masp.git
36+
cd masp
37+
cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX="$PS2DEV"
38+
cmake --build build -j $(getconf _NPROCESSORS_ONLN)
39+
cmake --install build
40+
41+
- name: Install openvcl
42+
run: |
43+
git clone https://github.com/fjtrujy/openvcl.git
44+
cd openvcl
45+
git checkout ps2gl
46+
make -j $(getconf _NPROCESSORS_ONLN) clean
47+
make -j $(getconf _NPROCESSORS_ONLN)
48+
make -j $(getconf _NPROCESSORS_ONLN) install
49+
50+
3351
- name: Configure with CMake
3452
run: |
3553
mkdir build

0 commit comments

Comments
 (0)