CI / build-and-test (push) Failing after 12s
Debian 11's libstdc++ (GCC 10) lacks <format> even with clang-18. Arch ships clang-18 and the latest libstdc++ out of the box. Container-based runner with pacman for dead-simple dependency install.
36 lines
722 B
YAML
36 lines
722 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
build-and-test:
|
|
runs-on: ubuntu-latest
|
|
container: archlinux:latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
pacman -Syu --noconfirm
|
|
pacman -S --noconfirm clang cmake ninja
|
|
|
|
- name: Build kappa
|
|
run: |
|
|
cmake -B build -G Ninja \
|
|
-DCMAKE_C_COMPILER=clang \
|
|
-DCMAKE_CXX_COMPILER=clang++
|
|
cmake --build build
|
|
|
|
- name: DSL and CLI tests
|
|
run: ./test.sh
|
|
|
|
- name: Init-switching tests
|
|
run: ./test-init-switch.sh
|
|
|
|
- name: Comprehensive tests
|
|
run: ./test-full.sh
|