mirror of
https://github.com/project-slippi/Nintendont.git
synced 2025-10-06 00:22:40 +02:00
ci: remove Dockerfile and pin to latest
dockerfile is now in https://github.com/project-slippi/Dockerfile
This commit is contained in:
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
@@ -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 }}
|
||||
|
20
Dockerfile
20
Dockerfile
@@ -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/
|
Reference in New Issue
Block a user