From 2ec9fbcd0fab48fbac43f4b902c38192e0f094c7 Mon Sep 17 00:00:00 2001 From: Persson-dev Date: Thu, 14 Mar 2024 15:29:16 +0100 Subject: [PATCH] action: install glew via apt --- .gitea/workflows/ubuntu.yaml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/ubuntu.yaml b/.gitea/workflows/ubuntu.yaml index 2e4bc10..99c1693 100644 --- a/.gitea/workflows/ubuntu.yaml +++ b/.gitea/workflows/ubuntu.yaml @@ -10,7 +10,7 @@ jobs: - name: Install deps run : | apt update - apt install -y libsdl2-dev libassimp-dev + apt install -y libsdl2-dev libassimp-dev libglew-dev - name: Check out repository code uses: actions/checkout@v3 @@ -29,9 +29,7 @@ jobs: key: 'ubuntu-packages' - name: XMake config - run: | - xmake require -j1 -y --root - xmake f -p linux --root + run: xmake f -p linux --root - name: Build run: xmake --root