Skip to content

Commit 7b4fa29

Browse files
committed
Update CI artifacts
1 parent a8b852a commit 7b4fa29

File tree

1 file changed

+18
-6
lines changed

1 file changed

+18
-6
lines changed

.github/workflows/compilation.yml

Lines changed: 18 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,25 +20,37 @@ jobs:
2020
- name: Install ps2stuff
2121
run: |
2222
git clone https://github.com/ps2dev/ps2stuff.git
23-
cd ps2stuff && make clean all install
23+
cd ps2stuff
24+
make -j $(getconf _NPROCESSORS_ONLN) clean
25+
make -j $(getconf _NPROCESSORS_ONLN) all
26+
make -j $(getconf _NPROCESSORS_ONLN) install
2427
2528
- name: Compile project
2629
run: |
27-
make clean all install
30+
make -j $(getconf _NPROCESSORS_ONLN) clean
31+
make -j $(getconf _NPROCESSORS_ONLN) all
32+
make -j $(getconf _NPROCESSORS_ONLN) install
2833
2934
- name: Compile GLUT
3035
run: |
31-
cd glut && make clean all install
36+
cd glut
37+
make -j $(getconf _NPROCESSORS_ONLN) clean
38+
make -j $(getconf _NPROCESSORS_ONLN) all
39+
make -j $(getconf _NPROCESSORS_ONLN) install
3240
3341
- name: Compile examples
3442
run: |
3543
cd examples
36-
# For now just box example is compiling
37-
cd box && make clean all
44+
# For now just box and logo example is compiling
45+
cd box && make clean all && cd ..
46+
cd logo && make clean all && cd ..
47+
3848
3949
- name: Upload artifacts
4050
uses: actions/upload-artifact@v3
4151
with:
4252
name: examples
4353
path: |
44-
examples/box/box.elf
54+
examples/**/*.elf
55+
examples/**/*.gl
56+
examples/**/*.rtx

0 commit comments

Comments
 (0)