e3b139ad3d
Lint & Format (JS/TS) / lint-format (pull_request) Successful in 32s
Build (C++) / build-zshell (pull_request) Failing after 47s
Python / lint-format (pull_request) Successful in 32s
Lint & Format (C++) / lint-format (pull_request) Failing after 47s
Python / test (pull_request) Successful in 40s
Lint & Format (Rust) / lint-format (pull_request) Successful in 1m3s
42 lines
1.0 KiB
YAML
42 lines
1.0 KiB
YAML
name: Build (C++)
|
|
|
|
on:
|
|
pull_request:
|
|
|
|
jobs:
|
|
build-zshell:
|
|
runs-on: alpine
|
|
container: archlinux:latest
|
|
|
|
steps:
|
|
- name: Install node & git
|
|
run: |
|
|
pacman-key --init
|
|
pacman-key --populate archlinux
|
|
pacman -Syu --noconfirm nodejs git
|
|
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Install build tools
|
|
run: pacman -S --noconfirm \
|
|
base-devel \
|
|
cmake \
|
|
ninja \
|
|
pkgconf \
|
|
qt6-base \
|
|
qt6-declarative \
|
|
qt6-shadertools \
|
|
qt6-tools \
|
|
pipewire \
|
|
libqalculate \
|
|
glib2 \
|
|
aubio \
|
|
cava
|
|
|
|
- name: Configure
|
|
run: cmake -S . -B build -G Ninja
|
|
|
|
- name: Build ZShell
|
|
run: cmake --build build --target ZShell
|