forked from loafle/openapi-generator-original
* Oat++ Server Generator (C++) * Fixed for support for newest OpenAPI version. * ALPHA not STABLE. * Fixed for support for newest OpenAPI version. * Added github workflow & changed to OA3 Petstore. * Good catch on adding the Workflow. * Might help to update the samples. * Set C++ Standard the CMake way. * Would be easier if there was a .pc file. * oatpp.lib. * Add ws2. * This probably doesn't work, need to take a time out.
31 lines
637 B
YAML
31 lines
637 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 qt client
|
|
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
|