aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorItay Grudev <itay+89bf5c@grudev.com>2020-01-03 17:31:23 +0000
committerGitHub <noreply@github.com>2020-01-03 17:31:23 +0000
commita7a42d5ae4beea5e8426825f30c2502daf0922c3 (patch)
tree2045e920796a302e55820fb00bf4574ed8a7703f
parentGitHub Actions: Fixed typo in the yml (diff)
downloadsingleapplication-a7a42d5ae4beea5e8426825f30c2502daf0922c3.tar.xz
GitHub Actions syntax improvments for Windows support
-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 .