File tree Expand file tree Collapse file tree 3 files changed +15
-7
lines changed Expand file tree Collapse file tree 3 files changed +15
-7
lines changed Original file line number Diff line number Diff line change 1414 strategy :
1515 matrix :
1616 toolchain :
17- - nightly-2023-06-01
17+ - nightly-2024-02-18
1818
1919 runs-on : ubuntu-latest
2020 container : devkitpro/devkitarm
3939 matrix :
4040 toolchain :
4141 # Oldest supported nightly
42- - nightly-2023-06-01
42+ - nightly-2024-02-18
4343 - nightly
4444
4545 continue-on-error : ${{ matrix.toolchain == 'nightly' }}
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ COPY ./docker/download_citra.sh /usr/local/bin/download_citra
55RUN apt-get update -y && apt-get install -y jq
66
77ARG CITRA_CHANNEL=nightly
8- ARG CITRA_RELEASE=1995
8+ ARG CITRA_RELEASE=2098
99RUN download_citra ${CITRA_CHANNEL} ${CITRA_RELEASE}
1010
1111FROM devkitpro/devkitarm:latest as devkitarm
@@ -17,15 +17,18 @@ RUN cd /opt/devkitpro/examples/3ds/graphics/printing/hello-world && \
1717 make && \
1818 mv hello-world.3dsx /tmp/
1919
20- FROM ubuntu:latest
20+ FROM ubuntu:mantic
2121
2222RUN --mount=type=cache,sharing=locked,target=/var/cache/apt \
2323 apt-get update -y && \
2424 apt-get install -y \
25- libswscale5 \
25+ libavfilter9 \
26+ libavformat60 \
27+ libavutil58 \
2628 libsdl2-2.0-0 \
27- libavformat58 \
28- libavfilter7 \
29+ libswscale7 \
30+ mesa-vulkan-drivers \
31+ vulkan-tools \
2932 xvfb
3033
3134COPY --from=devkitarm /opt/devkitpro /opt/devkitpro
Original file line number Diff line number Diff line change 1+ # OpenGL renderer seems to crash so we force using vulkan:
2+ # https://github.com/rust3ds/test-runner/issues/16
3+ [Renderer]
4+ graphics_api = 2
5+
16[Miscellaneous]
27log_filter = *:Info Debug.Emulated:Debug
38
You can’t perform that action at this time.
0 commit comments