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 ..