aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/build-cmake.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/build-cmake.yml')
-rw-r--r--.github/workflows/build-cmake.yml14
1 files changed, 10 insertions, 4 deletions
diff --git a/.github/workflows/build-cmake.yml b/.github/workflows/build-cmake.yml
index 489ba36..c5cebf5 100644
--- a/.github/workflows/build-cmake.yml
+++ b/.github/workflows/build-cmake.yml
@@ -7,7 +7,7 @@ jobs:
strategy:
matrix:
- qt_version: [5.11.3, 5.12.6, 5.14.0]
+ qt_version: [4.8.7, 5.9.8, 5.12.6, 5.13.2, 5.14.0]
platform: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.platform }}
@@ -27,13 +27,19 @@ jobs:
run: cmake --build .
- name: Build example - basic (cmake)
- run: cmake . && cmake --build .
working-directory: examples/basic/
+ run: |
+ cmake .
+ cmake --build .
- name: Build example - calculator (cmake)
- run: cmake . && cmake --build .
working-directory: examples/calculator/
+ run: |
+ cmake .
+ cmake --build .
- name: Build example - sending_arguments (cmake)
- run: cmake . && cmake --build .
working-directory: examples/sending_arguments/
+ run: |
+ cmake .
+ cmake --build .