From f9e3fdeeefe04541b565c9192bbcaa8cf4f62c98 Mon Sep 17 00:00:00 2001 From: Tropical <42101043+tropicaaal@users.noreply.github.com> Date: Sat, 4 Apr 2026 11:54:52 -0500 Subject: [PATCH] forget why we have to install meson from pip --- .github/workflows/build-linux.yml | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/.github/workflows/build-linux.yml b/.github/workflows/build-linux.yml index 2a1a55f84..dca6cb9fd 100644 --- a/.github/workflows/build-linux.yml +++ b/.github/workflows/build-linux.yml @@ -39,20 +39,9 @@ jobs: - name: Install system dependencies uses: awalsh128/cache-apt-pkgs-action@latest with: - packages: build-essential ccache ninja-build libsdl2-dev libgl-dev libglu1-mesa-dev libpthread-stubs0-dev libglm-dev + packages: build-essential ccache meson ninja-build libsdl2-dev libgl-dev libglu1-mesa-dev libpthread-stubs0-dev libglm-dev version: 1.0 - - name: Setup python - uses: actions/setup-python@v5 - with: - python-version: '3.11' - cache: 'pip' - - - name: Install meson - run: | - pip install meson - ccache -M 5G || true # Set a reasonable ccache size - - name: Install LLVM + libc++ run: | wget -qO- https://apt.llvm.org/llvm.sh | sudo bash -s -- 20