mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-05-12 12:40:53 +00:00
* [cpp-qt-client] Just for test * Fix samples-cpp-qt-client github workflows * Use only 6.7.1 in CI * Revert "[cpp-qt-client] Just for test" This reverts commit c7e19aeb6c22fb801d67d56f94eed133d377ffdf.
34 lines
694 B
YAML
34 lines
694 B
YAML
name: Samples cpp qt client
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- "samples/client/petstore/cpp-qt/**"
|
|
pull_request:
|
|
paths:
|
|
- "samples/client/petstore/cpp-qt/**"
|
|
|
|
env:
|
|
GRADLE_VERSION: 6.9
|
|
|
|
jobs:
|
|
build:
|
|
name: Build cpp qt client
|
|
strategy:
|
|
matrix:
|
|
os:
|
|
- ubuntu-latest
|
|
- macOS-latest
|
|
- windows-latest
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Install Qt
|
|
uses: jurplel/install-qt-action@v4
|
|
with:
|
|
version: "6.7.1"
|
|
target: "desktop"
|
|
- name: Build
|
|
working-directory: "samples/client/petstore/cpp-qt"
|
|
run: cmake . && cmake --build .
|