mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-10-14 00:13:50 +00:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
37 lines
816 B
YAML
37 lines
816 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:
|
|
sample:
|
|
- samples/client/petstore/cpp-qt
|
|
- samples/client/petstore/cpp-qt-addDownloadProgress
|
|
os:
|
|
- ubuntu-latest
|
|
- macOS-latest
|
|
- windows-latest
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
- name: Install Qt
|
|
uses: jurplel/install-qt-action@v4
|
|
with:
|
|
version: "6.7.1"
|
|
target: "desktop"
|
|
- name: Build
|
|
working-directory: ${{ matrix.sample }}
|
|
run: cmake . && cmake --build . --verbose
|