From dc3d410b88de7228fe25639d7a9151d4c8af3e64 Mon Sep 17 00:00:00 2001 From: Lucas Machado Zainote <95252125+lucasmz1@users.noreply.github.com> Date: Fri, 27 Oct 2023 15:35:04 -0300 Subject: [PATCH] Update blank.yml --- .github/workflows/blank.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/blank.yml b/.github/workflows/blank.yml index ed14906..68159aa 100644 --- a/.github/workflows/blank.yml +++ b/.github/workflows/blank.yml @@ -52,6 +52,9 @@ jobs: --slave /usr/bin/g++ g++ /usr/bin/g++-$version wget -q "https://github.com/linuxdeploy/linuxdeploy/releases/download/continuous/linuxdeploy-x86_64.AppImage" -O linuxdeploy ; chmod a+x linuxdeploy wget -q "https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-x86_64.AppImage" -O appimagetool ; chmod a+x appimagetool + wget https://apt.llvm.org/llvm.sh + chmod +x llvm.sh + sudo ./llvm.sh 16 git clone https://github.com/dolphin-emu/dolphin.git dolphin-emu mkdir lucas/ mkdir lucas/usr/ @@ -75,7 +78,7 @@ jobs: Externals/fmt \ && git pull --recurse-submodules mkdir Build && cd Build - cmake .. -G Ninja -DLINUX_LOCAL_DEV=true -DCMAKE_C_COMPILER=gcc-13 -DCMAKE_CXX_COMPILER=g++-13 -DENABLE_TESTS=OFF -Wno-dev -DCMAKE_INSTALL_PREFIX="/home/runner/work/Dolphin_emu_Appimage/Dolphin_emu_Appimage/lucas/usr/" + cmake .. -G Ninja -DLINUX_LOCAL_DEV=true -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ -DENABLE_TESTS=OFF -Wno-dev -DCMAKE_INSTALL_PREFIX="/home/runner/work/Dolphin_emu_Appimage/Dolphin_emu_Appimage/lucas/usr/" ninja ninja install cd ..