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
40 lines
1.1 KiB
YAML
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
|