Skip to content

Fix cpp build

Fix cpp build #32

Workflow file for this run

name: test-cpp
on:
push:
branches:
- main
- renovate/**
paths:
- cpp/**
- testdata/**
- gherkin-languages.json
pull_request:
branches:
- main
paths:
- cpp/**
- testdata/**
- gherkin-languages.json
workflow_call:
jobs:
test-cpp:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: install cmake and libraries
run: |
sudo apt-get update
sudo apt-get install ninja-build cmake
sudo apt-get install nlohmann-json3-dev
ninja --version
cmake --version
gcc --version
- name: configure and build
env:
NPROCS: 1
run: |
make acceptance
working-directory: cpp