openapi-generator/.github/workflows/samples-cpp-qt-client.yaml
Martin Delille aef9142c2c
[cpp-qt-client] Stop using Qt 5.15.2 in the CI (#19049)
* [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.
2024-07-07 16:57:55 +08:00

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 .