From 72eb801ce191daa8cba03ef63f0f165062743170 Mon Sep 17 00:00:00 2001 From: Jason Millard Date: Sat, 26 Feb 2022 22:51:30 -0500 Subject: [PATCH] mac-mono: fix x64arm64/x64ARM64 case issue --- images/ubuntu/editor/Dockerfile | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/images/ubuntu/editor/Dockerfile b/images/ubuntu/editor/Dockerfile index 202a078a..32849464 100644 --- a/images/ubuntu/editor/Dockerfile +++ b/images/ubuntu/editor/Dockerfile @@ -237,6 +237,16 @@ RUN echo "$version-$module" | grep -q -v '^\(2018\|2019\|2020.1\).*webgl' \ $UNITY_PATH/Editor/Data/PlaybackEngines/WebGLSupport/BuildTools/Brotli/dist/Brotli-0.4.0-py2.7-linux-x86_64.egg \ $UNITY_PATH/Editor/Data/PlaybackEngines/WebGLSupport/BuildTools/Brotli/dist/Brotli-0.4.0-py2.7-macosx-10.10-x86_64.egg +#======================================================================================= +# [2021.x-mac-mono] x64arm64/x64ARM64 case issue https://github.com/game-ci/unity-builder/issues/320 +#======================================================================================= +RUN echo "$version-$module" | grep -q -v '^2021.*mac-mono' \ + && exit 0 \ + || : \ + && ln -s \ + $UNITY_PATH/Editor/Data/PlaybackEngines/MacStandaloneSupport/Variations/macos_x64arm64_player_nondevelopment_mono \ + $UNITY_PATH/Editor/Data/PlaybackEngines/MacStandaloneSupport/Variations/macos_x64ARM64_player_nondevelopment_mono + #======================================================================================= # [2021.x-linux-il2cpp] lld #=======================================================================================