Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .devcontainer/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ services:
command: sleep infinity

freertos-host:
image: ghcr.io/davidcozens/cpputest-freertos:sha-10a14ae
image: ghcr.io/davidcozens/cpputest-freertos:sha-bbc958b
volumes:
- ..:/workspaces/SolidSyslog:cached
- ${SSH_AUTH_SOCK:-/dev/null}:/ssh-agent
Expand Down Expand Up @@ -153,7 +153,7 @@ services:
- syslog-ng

freertos-target:
image: ghcr.io/davidcozens/cpputest-freertos-cross:sha-10a14ae
image: ghcr.io/davidcozens/cpputest-freertos-cross:sha-bbc958b
volumes:
- ..:/workspaces/SolidSyslog:cached
- syslog-ng-ctl-freertos:/var/lib/syslog-ng
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -724,7 +724,7 @@ jobs:
contents: read
checks: write
container:
image: ghcr.io/davidcozens/cpputest-freertos:sha-10a14ae
image: ghcr.io/davidcozens/cpputest-freertos:sha-bbc958b
options: --user root
env:
GIT_CONFIG_COUNT: 1
Expand Down Expand Up @@ -768,7 +768,7 @@ jobs:
permissions:
contents: read
container:
image: ghcr.io/davidcozens/cpputest-freertos-cross:sha-10a14ae
image: ghcr.io/davidcozens/cpputest-freertos-cross:sha-bbc958b
options: --user root
env:
GIT_CONFIG_COUNT: 1
Expand Down
10 changes: 5 additions & 5 deletions Platform/FreeRtos/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# FreeRTOS adapter pack — shipped as sources, not a precompiled library.
#
# FreeRTOS, FreeRTOS-Plus-FAT, and Mbed TLS are header-configured: the
# integrator's FreeRTOSConfig.h / ffconf.h / mbedtls_config.h flows through
# upstream headers and changes the size/layout of TCBs, semaphores, file
# handles, and SSL contexts. Compiling our adapters once into libSolidSyslog.a
# would silently break consumers that use a different config.
# FreeRTOS and Mbed TLS are header-configured: the integrator's
# FreeRTOSConfig.h / mbedtls_config.h flows through upstream headers and
# changes the size/layout of TCBs, semaphores, and SSL contexts. Compiling
# our adapters once into libSolidSyslog.a would silently break consumers
# that use a different config.
#
# Instead, this is an INTERFACE library — each consumer (Example/FreeRtos/*,
# Tests/FreeRtos/*Test, downstream integrator apps) recompiles the adapter
Expand Down
2 changes: 1 addition & 1 deletion ci/docker-compose.bdd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ services:

behave-freertos:
# Cross image carries qemu-system-arm + python3 + behave.
image: ghcr.io/davidcozens/cpputest-freertos-cross:sha-10a14ae
image: ghcr.io/davidcozens/cpputest-freertos-cross:sha-bbc958b
user: "0"
volumes:
- ..:/workspaces/SolidSyslog
Expand Down
4 changes: 2 additions & 2 deletions docs/containers.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
|---|---|---|
| `ghcr.io/davidcozens/cpputest` | `sha-18f19e1` | devcontainer (`gcc` service), most CI jobs |
| `ghcr.io/davidcozens/cpputest-clang` | `sha-7eac3ab` | `clang` compose service, `build-linux-clang` CI job, `analyze-iwyu` CI job |
| `ghcr.io/davidcozens/cpputest-freertos` | `sha-10a14ae` | `freertos-host` compose service, `build-freertos-host-tdd` CI job — adds FreeRTOS-Kernel / Plus-TCP / Plus-FAT / Mbed TLS sources for host-TDD of FreeRTOS adapters against fakes |
| `ghcr.io/davidcozens/cpputest-freertos-cross` | `sha-10a14ae` | `freertos-target` compose service, `build-freertos-target` CI job, `behave-freertos` BDD service, `bdd-freertos-qemu` CI job — adds `gcc-arm-none-eabi`, `libnewlib-arm-none-eabi`, `gdb-multiarch` (aliased as `arm-none-eabi-gdb`), `qemu-system-arm`, `python3` + `behave` for cross builds, on-QEMU runs, and BDD scenarios driving a QEMU target |
| `ghcr.io/davidcozens/cpputest-freertos` | `sha-bbc958b` | `freertos-host` compose service, `build-freertos-host-tdd` CI job — adds FreeRTOS-Kernel / Plus-TCP / FatFs / Mbed TLS sources for host-TDD of FreeRTOS adapters against fakes |
| `ghcr.io/davidcozens/cpputest-freertos-cross` | `sha-bbc958b` | `freertos-target` compose service, `build-freertos-target` CI job, `behave-freertos` BDD service, `bdd-freertos-qemu` CI job — adds `gcc-arm-none-eabi`, `libnewlib-arm-none-eabi`, `gdb-multiarch` (aliased as `arm-none-eabi-gdb`), `qemu-system-arm`, `python3` + `behave` for cross builds, on-QEMU runs, and BDD scenarios driving a QEMU target |
| `balabit/syslog-ng` | `4.8.2` | `syslog-ng-linux` and `syslog-ng-freertos` services — BDD test oracles, one per target pair. Pinned to the 4.8 LTS line; 4.11.0 (`latest` as of 2026-02-24) regressed by aborting on `STATS` over the control socket, which crashed the oracle and cascaded to the dev-container network when `freertos-target` shares the namespace. |
| `ghcr.io/davidcozens/behave` | `sha-3faff14` | `behave-linux` service — Debian trixie + Python 3.12 + Behave for Linux BDD scenarios. The FreeRTOS BDD runner uses the `cpputest-freertos-cross` image instead (which carries QEMU + Behave). |

Expand Down
Loading