Skip to content
Open
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
15 changes: 15 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,3 +96,18 @@ jobs:
- name: Validate Dockerfile build
if: steps.filter.outputs.dockerfile == 'true'
run: docker build -f Dockerfile.py -t concore-py-test .

cpp-shm-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Install g++
run: sudo apt-get update && sudo apt-get install -y g++

- name: Parse concore.hpp standalone
# -fsyntax-only parses concore.hpp without producing an object
# file, so we don't need system SHM semaphores or shared-memory
# segments to succeed. This catches header-level regressions on
# the SHM transport (issue #195) without needing g++ at runtime.
run: g++ -std=c++17 -Wall -Wextra -fsyntax-only tests/test_shm_cpp_smoke.cpp
Loading
Loading