From ec0a8af8216cbdf335dd125fa24e49034ce8d518 Mon Sep 17 00:00:00 2001 From: MatthewBeshay <92357869+MatthewBeshay@users.noreply.github.com> Date: Fri, 3 Apr 2026 19:13:25 +1100 Subject: [PATCH] fix: update CI to install libc++ and fix artifact path --- .github/workflows/build-linux.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-linux.yml b/.github/workflows/build-linux.yml index ece858d39..7fae0d7c4 100644 --- a/.github/workflows/build-linux.yml +++ b/.github/workflows/build-linux.yml @@ -34,7 +34,11 @@ jobs: python -m pip install meson # Set a reasonable ccache size ccache -M 5G || true - python -m pip install meson + + - name: Install LLVM + libc++ + run: | + wget -qO- https://apt.llvm.org/llvm.sh | sudo bash -s -- 20 + sudo apt-get install -y libc++-20-dev libc++abi-20-dev - name: Restore ccache uses: actions/cache@v4 @@ -75,5 +79,5 @@ jobs: uses: actions/upload-artifact@v4 with: name: minecraft-client-linux-${{ github.sha }} - path: build/Minecraft.Client/Minecraft.Client + path: build/targets/app/Minecraft.Client retention-days: 7 \ No newline at end of file