From eb20ecf6bdb60765ed7a6b91aada3b2daf8c547a Mon Sep 17 00:00:00 2001 From: qurious-pixel <62252937+qurious-pixel@users.noreply.github.com> Date: Sun, 29 May 2022 18:37:42 -0700 Subject: [PATCH] Fix conan failing to build wheel --- .github/workflows/docker.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docker.sh b/.github/workflows/docker.sh index 43733e6fc..300bbe56a 100644 --- a/.github/workflows/docker.sh +++ b/.github/workflows/docker.sh @@ -22,7 +22,7 @@ CACHEDIR=~/.ccache ls -al $CACHEDIR ############################################### # Install SDL -SDL2VER=2.0.18 +SDL2VER=2.0.22 #SDL2 cd $CACHEDIR if [[ ! -e SDL2-${SDL2VER} ]]; then @@ -38,7 +38,8 @@ sdl2-config --version cd /yuzu ############################################### -pip3 install conan --upgrade +pip3 install conan --upgrade --no-cache-dir +pip3 install wheel mkdir build && cd build