Skip to content

Commit abceb33

Browse files
committed
Updating CI
1 parent b66bd0e commit abceb33

File tree

2 files changed

+16
-9
lines changed

2 files changed

+16
-9
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: printf '%s\n' "sha8=$(printf '%s\n' ${GITHUB_SHA} | cut -c1-8)" >> $GITHUB_OUTPUT
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

.github/workflows/docker.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,6 @@ jobs:
2929
run: |
3030
echo "DOCKER_TAG=latest" >> $GITHUB_ENV
3131
32-
- name: Set up QEMU
33-
uses: docker/setup-qemu-action@v3
34-
35-
- name: Set up Docker Buildx
36-
uses: docker/setup-buildx-action@v3
37-
3832
- name: Login to DockerHub
3933
uses: docker/login-action@v3
4034
if: env.DOCKER_USERNAME != null

0 commit comments

Comments
 (0)