mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-10-13 16:03:43 +00:00
* Added cpp-oatpp-client. * Updated pipelines. * Should match formatting now. * Moved includes around. * Ran doc generator.
31 lines
640 B
YAML
31 lines
640 B
YAML
name: Samples cpp oat++ server
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- "samples/server/petstore/cpp-oatpp/**"
|
|
pull_request:
|
|
paths:
|
|
- "samples/server/petstore/cpp-oatpp/**"
|
|
|
|
env:
|
|
GRADLE_VERSION: 6.9
|
|
|
|
jobs:
|
|
build:
|
|
name: Build cpp oat++ server
|
|
strategy:
|
|
matrix:
|
|
sample:
|
|
- samples/server/petstore/cpp-oatpp
|
|
os:
|
|
- ubuntu-latest
|
|
- macOS-latest
|
|
- windows-latest
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Build
|
|
working-directory: ${{ matrix.sample }}
|
|
run: cmake -B build && cmake --build build --verbose
|