WIP: setup Cpp workflow #116

Closed
AramJonghu wants to merge 9 commits from workflow-cpp into main
Showing only changes of commit 5dfffc5ac8 - Show all commits
+6 -6
View File
@@ -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