GitHub Actions syntax improvments for Windows support

This commit is contained in:
Itay Grudev 2020-01-03 17:31:23 +00:00 committed by GitHub
parent 767645c80f
commit a7a42d5ae4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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 .