0ef1e94f82
Build (C++) / build-zshell (pull_request) Failing after 2s
Lint & Format (JS/TS) / lint-format (pull_request) Successful in 27s
Python / lint-format (pull_request) Successful in 40s
Lint & Format (C++) / lint-format (pull_request) Failing after 1m6s
Python / test (pull_request) Successful in 1m6s
Lint & Format (Rust) / lint-format (pull_request) Successful in 1m23s
39 lines
950 B
YAML
39 lines
950 B
YAML
name: Build (C++)
|
|
|
|
on:
|
|
pull_request:
|
|
|
|
jobs:
|
|
build-zshell:
|
|
runs-on: alpine
|
|
container: archlinux:latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Install tools
|
|
run: |
|
|
pacman -Syu --noconfirm
|
|
pacman -S --noconfirm \
|
|
base-devel \
|
|
cmake \
|
|
ninja \
|
|
pkgconf \
|
|
qt6-base \
|
|
qt6-declarative \
|
|
qt6-shadertools \
|
|
qt6-tools \
|
|
pipewire \
|
|
libqalculate \
|
|
glib2 \
|
|
aubio \
|
|
cava \
|
|
git
|
|
|
|
- name: Configure
|
|
run: cmake -S . -B build -G Ninja
|
|
|
|
- name: Build ZShell
|
|
run: cmake --build build --target ZShell
|