diff options
author | Itay Grudev <itay+89bf5c@grudev.com> | 2020-01-03 17:31:23 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-03 17:31:23 +0000 |
commit | a7a42d5ae4beea5e8426825f30c2502daf0922c3 (patch) | |
tree | 2045e920796a302e55820fb00bf4574ed8a7703f /.github/workflows | |
parent | GitHub Actions: Fixed typo in the yml (diff) | |
download | singleapplication-a7a42d5ae4beea5e8426825f30c2502daf0922c3.tar.xz |
GitHub Actions syntax improvments for Windows support
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/build-cmake.yml | 14 |
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 . |