ci: provoke pipeline (touch Dockerfile + code)
All checks were successful
🚦 CI / changes (push) Successful in 32s
🚦 CI / docker (push) Successful in 1m0s
🚦 CI / test (push) Successful in 4m47s
🚦 CI / docs (push) Successful in 13s

Trivial comment changes to exercise the new CI orchestration: the
docker job should rebuild+push the builder image first, then test
and docs run against the fresh image.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Duncan Tourolle 2026-06-20 09:46:35 +02:00
parent 4c0f1f6923
commit 7c6a8be2b7
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
# KPN++ Builder Image # KPN++ Builder Image (CI: pipeline trigger)
# Pre-built image with GCC, CMake, Ninja, and Python dev headers for building and testing KPN++ # Pre-built image with GCC, CMake, Ninja, and Python dev headers for building and testing KPN++
# Build: docker build -f Dockerfile.builder -t gitea.tourolle.paris/dtourolle/kpnpp-builder:latest . # Build: docker build -f Dockerfile.builder -t gitea.tourolle.paris/dtourolle/kpnpp-builder:latest .
# Push: docker push gitea.tourolle.paris/dtourolle/kpnpp-builder:latest # Push: docker push gitea.tourolle.paris/dtourolle/kpnpp-builder:latest

View File

@ -1,4 +1,4 @@
// network.cpp — orchestrator/watchdog implementation details. // network.cpp — orchestrator/watchdog implementation details. (CI: pipeline trigger)
// Most of the Network class is header-only (template-heavy). // Most of the Network class is header-only (template-heavy).
// Non-template implementation lives here once the watchdog grows // Non-template implementation lives here once the watchdog grows
// beyond the stub in network.hpp. // beyond the stub in network.hpp.