Skip to content

Commit 14ac514

Browse files
committed
Fix CI/CD
1 parent 6a8c7f9 commit 14ac514

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

.github/workflows/compilation.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,19 @@ jobs:
2626
git checkout cmake
2727
mkdir build
2828
cd build
29-
cmake ..
29+
cmake -DCMAKE_TOOLCHAIN_FILE=${PS2SDK}/ps2dev.cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo ..
3030
make -j $(getconf _NPROCESSORS_ONLN)
3131
make install
32+
33+
- name: Install openvcl
34+
run: |
35+
git clone https://github.com/fjtrujy/openvcl.git
36+
cd openvcl
37+
git checkout ps2gl
38+
make -j $(getconf _NPROCESSORS_ONLN) clean
39+
make -j $(getconf _NPROCESSORS_ONLN)
40+
make -j $(getconf _NPROCESSORS_ONLN) install
41+
3242
3343
- name: Configure with CMake
3444
run: |

0 commit comments

Comments
 (0)