Skip to content

Commit 162f060

Browse files
Merge pull request #19 from rust3ds/fix/citra-fork
2 parents b17065d + d8d7567 commit 162f060

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed

run-tests/Dockerfile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,8 @@ WORKDIR /tmp
44
COPY ./docker/download_citra.sh /usr/local/bin/download_citra
55
RUN apt-get update -y && apt-get install -y jq
66

7-
ARG CITRA_CHANNEL=nightly
8-
ARG CITRA_RELEASE=2098
9-
RUN download_citra ${CITRA_CHANNEL} ${CITRA_RELEASE}
7+
ARG TAG=r0c2f076
8+
RUN download_citra ${TAG}
109

1110
FROM devkitpro/devkitarm:latest as devkitarm
1211

run-tests/docker/download_citra.sh

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,9 @@
22

33
set -euxo pipefail
44

5-
CITRA_CHANNEL=$1
6-
CITRA_RELEASE=$2
5+
TAG=$1
76

8-
RELEASE_API="https://api.github.com/repos/citra-emu/citra-${CITRA_CHANNEL}/releases/tags/${CITRA_CHANNEL}-${CITRA_RELEASE}"
9-
10-
curl "${RELEASE_API}" |
7+
curl "https://api.github.com/repos/PabloMK7/citra/releases/tags/${TAG}" |
118
jq --raw-output '.assets[].browser_download_url' |
129
grep -E 'citra-linux-.*[.]tar.gz' |
1310
xargs wget -O citra-linux.tar.gz

0 commit comments

Comments
 (0)