From 62bf88b5053e334172ac807fec0274c005d7ddcd Mon Sep 17 00:00:00 2001 From: neru Date: Fri, 19 Jun 2026 13:17:55 -0300 Subject: [PATCH] build: add dependencies --- .github/workflows/build.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 84c3c9a..2acc562 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,6 +12,11 @@ jobs: runs-on: ubuntu-latest container: archlinux:latest steps: + - name: Install Dependencies + run: | + pacman -Syu --noconfirm + pacman -S --noconfirm nodejs mingw-w64-gcc cmake ninja ccache zip git base-devel + - uses: actions/checkout@v4 with: submodules: recursive @@ -61,10 +66,8 @@ jobs: ${{ runner.os }}-deps-${{ hashFiles('**/CMakeLists.txt') }}- ${{ runner.os }}-deps- - - name: Install tools + - name: Setup ccache run: | - pacman -Syu --noconfirm - pacman -S --noconfirm mingw-w64-gcc cmake ninja ccache zip git base-devel mkdir -p ccache echo "CCACHE_DIR=$GITHUB_WORKSPACE/ccache" >> $GITHUB_ENV