Skip to content

Commit df5a585

Browse files
committed
Update workflow
1 parent e87743f commit df5a585

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

.github/workflows/compilation.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ on:
99
jobs:
1010
build:
1111
runs-on: ubuntu-latest
12-
container: ps2dev/ps2sdk-ports:latest
12+
container: ps2dev/ps2sdk:latest
1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1515

1616
- name: Install dependencies
1717
run: |
@@ -43,6 +43,7 @@ jobs:
4343
cd examples
4444
cd box && make clean all && cd ..
4545
cd logo && make clean all && cd ..
46+
cd performance && make clean all && cd ..
4647
cd tricked_out && make clean all && cd ..
4748
cd nehe/lesson02 && make clean all && cd ../..
4849
cd nehe/lesson03 && make clean all && cd ../..
@@ -51,7 +52,7 @@ jobs:
5152
5253
5354
- name: Upload artifacts
54-
uses: actions/upload-artifact@v3
55+
uses: actions/upload-artifact@v4
5556
with:
5657
name: examples
5758
path: |

glut/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
EE_LIB = libps2glut.a
22

3-
EE_LDFLAGS += -L. -L$(PS2SDK)/ports/lib -L$(PS2DEV)/gsKit/lib
4-
EE_INCS += -I./include -I$(PS2SDK)/ports/include -I$(PS2DEV)/gsKit/include
3+
EE_LDFLAGS += -L. -L$(PS2SDK)/ports/lib
4+
EE_INCS += -I./include -I$(PS2SDK)/ports/include
55

66
ifeq ($(DEBUG), 1)
77
EE_CFLAGS += -D_DEBUG

0 commit comments

Comments
 (0)