Files
z-bar-qt/.gitea/workflows/build.yml
T
AramJonghu d82b6da074
Lint & Format (JS/TS) / lint-format (pull_request) Successful in 12s
Python / lint-format (pull_request) Successful in 19s
Python / test (pull_request) Successful in 35s
Lint & Format (Rust) / lint-format (pull_request) Successful in 1m9s
Build (C++) / build (pull_request) Failing after 5s
ci: adjust link of dockerfile build origin
2026-06-29 00:24:05 +02:00

30 lines
855 B
YAML

name: Build (C++)
on:
pull_request:
jobs:
build:
runs-on: alpine
# Uses pre-built Docker image with all build deps.
# Rebuild via ci-image.yml workflow.
container:
image: git.aramjonghu.nl/aramjonghu/zshell-ci:latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Configure
run: cmake -B build -G Ninja -DENABLE_MODULES=plugin -DCMAKE_BUILD_TYPE=Release
- name: Build
run: ninja -C build
- name: clang-tidy
continue-on-error: true
run: |
find Plugins -name '*.cpp' -o -name '*.hpp' | \
xargs clang-tidy -p build --quiet 2>&1 | \
grep -v 'Suppressed\|non-user\|non-system\|unknown argument.*mno-direct'