Skip to content

Commit 27cf58d

Browse files
committed
Updating CI
1 parent b66bd0e commit 27cf58d

File tree

1 file changed

+16
-3
lines changed

1 file changed

+16
-3
lines changed

.github/workflows/compilation.yml

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,19 @@ jobs:
5959
run: |
6060
export PS2DEV=$PWD/ps2dev
6161
export PATH=$PATH:$PS2DEV/iop/bin
62-
mipsel-ps2-irx-as --version
63-
mipsel-ps2-irx-ld --version
64-
mipsel-ps2-irx-gcc --version
62+
mipsel-none-elf-as --version
63+
mipsel-none-elf-ld --version
64+
mipsel-none-elf-gcc --version
65+
66+
- name: Get short SHA
67+
id: slug
68+
run: echo "::set-output name=sha8::$(echo ${GITHUB_SHA} | cut -c1-8)"
69+
70+
- name: Compress ps2dev folder
71+
run: |
72+
tar -zcvf ps2dev.tar.gz ps2dev
73+
74+
- uses: actions/upload-artifact@v4
75+
with:
76+
name: ps2dev-${{ steps.slug.outputs.sha8 }}-${{ matrix.os[0] }}
77+
path: ps2dev.tar.gz

0 commit comments

Comments
 (0)