diff --git a/.gitea/workflows/build-cpp.yml b/.gitea/workflows/build-cpp.yml index b470eff..292a7be 100644 --- a/.gitea/workflows/build-cpp.yml +++ b/.gitea/workflows/build-cpp.yml @@ -9,13 +9,14 @@ jobs: container: archlinux:latest steps: + - name: Install node & git + run: pacman -Syu --noconfirm nodejs git + - name: Checkout uses: actions/checkout@v4 - - name: Install tools - run: | - pacman -Syu --noconfirm - pacman -S --noconfirm \ + - name: Install build tools + run: pacman -S --noconfirm \ base-devel \ cmake \ ninja \ @@ -28,8 +29,7 @@ jobs: libqalculate \ glib2 \ aubio \ - cava \ - git + cava - name: Configure run: cmake -S . -B build -G Ninja