ci: remove Dockerfile and pin to latest

dockerfile is now in https://github.com/project-slippi/Dockerfile
This commit is contained in:
Nikhil Narayana
2022-08-30 23:58:49 -07:00
parent c4da3f3179
commit 7455945d9e
2 changed files with 1 additions and 21 deletions

View File

@@ -41,7 +41,7 @@ jobs:
if: success()
working-directory: ${{ github.workspace }}
run: |
sudo docker run --volume=${PWD}:/work --workdir=/work nikhilnarayana/devkitpro-slippi make -j7
sudo docker run --volume=${PWD}:/work --workdir=/work nikhilnarayana/devkitpro-slippi:latest make -j7
- name: "Package"
if: success()
working-directory: ${{ github.workspace }}

View File

@@ -1,20 +0,0 @@
FROM devkitpro/toolchain-base AS builder
RUN apt-get update
RUN apt-get install -y golang
RUN git clone https://github.com/JLaferri/gecko
WORKDIR /gecko
RUN go build .
FROM devkitpro/toolchain-base
LABEL maintainer="Nikki <nikki@slippi.gg>"
RUN dkp-pacman -Syyu --noconfirm gamecube-dev wii-dev wiiu-dev gba-dev && \
dkp-pacman -S --needed --noconfirm `dkp-pacman -Slq dkp-libs | grep '^ppc-'` && \
dkp-pacman -Scc --noconfirm
RUN apt-get update
RUN apt-get install -y "g++-multilib"
ENV DEVKITPPC=${DEVKITPRO}/devkitPPC
ENV DEVKITARM=${DEVKITPRO}/devkitARM
COPY --from=builder /gecko/gecko /usr/bin/