Files
z-bar-qt/.gitea/workflows/build-cpp.yml
T
AramJonghu 5551ec1b54
Lint & Format (JS/TS) / lint-format (pull_request) Successful in 20s
Python / lint-format (pull_request) Successful in 32s
Python / test (pull_request) Successful in 1m10s
Lint & Format (C++) / lint-format (pull_request) Failing after 1m30s
Lint & Format (Rust) / lint-format (pull_request) Successful in 1m38s
Build (C++) / build-zshell (pull_request) Failing after 2m26s
testing repo added globally for build workflow
2026-06-01 21:48:09 +02:00

40 lines
1.1 KiB
YAML

name: Build (C++)
on:
pull_request:
jobs:
build-zshell:
runs-on: alpine
container: node:26-alpine
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install tools
run: |
echo https://dl-cdn.alpinelinux.org/alpine/edge/testing >> /etc/apk/repositories
apk update
apk add --no-cache \
build-base \
cmake \
ninja \
pkgconf \
qt6-qtbase-dev \
qt6-qtdeclarative-dev \
qt6-qtshadertools-dev \
qt6-qttools-dev \
pipewire-dev \
libqalculate-dev \
glib-dev \
aubio-dev \
git
apk add --no-cache cava
- name: Configure
run: cmake -S . -B build -G Ninja
- name: Build ZShell
run: cmake --build build --target ZShell