File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ RUN apt-get update && apt-get -y install \
3535 apt-get install -y cpu-checker qemu-kvm qemu-utils qemu-system-x86 qemu-system-s390x qemu-system-arm qemu-guest-agent ethtool keyutils iptables gawk
3636
3737# amd64 Github Actions Runner.
38- ARG version=2.320 .0
38+ ARG version=2.321 .0
3939ARG homedir=/actions-runner
4040# Copy scripts from myoung34/docker-github-actions-runner
4141RUN curl -L https://raw.githubusercontent.com/myoung34/docker-github-actions-runner/${version}/entrypoint.sh -o /entrypoint.sh && chmod 755 /entrypoint.sh
@@ -62,6 +62,9 @@ COPY --from=ld-prefix / /usr/x86_64-linux-gnu/
6262RUN ln -fs ../lib/x86_64-linux-gnu/ld-linux-x86-64.so.2 /usr/x86_64-linux-gnu/lib64/
6363RUN ln -fs /etc/resolv.conf /usr/x86_64-linux-gnu/etc/
6464ENV QEMU_LD_PREFIX=/usr/x86_64-linux-gnu
65+ # mitigates .NET 8 crash in qemu emulation
66+ # see https://gitlab.com/qemu-project/qemu/-/issues/2600
67+ ENV DOTNET_EnableWriteXorExecute=0
6568
6669ENTRYPOINT ["/entrypoint.sh" ]
6770CMD ["./bin/Runner.Listener" , "run" , "--startuptype" , "service" ]
You can’t perform that action at this time.
0 commit comments