CI-unixish.yml: fixed syntax error (#3642)

This commit is contained in:
Oliver Stöneberg 2021-12-17 13:06:50 +01:00 committed by GitHub
parent 4fb43a3f56
commit ffae40d2f4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -50,14 +50,14 @@ jobs:
# TODO: Qt installation often fails with timeout errors on macos # TODO: Qt installation often fails with timeout errors on macos
- name: Install Qt - name: Install Qt
if: !contains(matrix.os, 'macos') if: contains(matrix.os, 'ubuntu')
uses: jurplel/install-qt-action@v2 uses: jurplel/install-qt-action@v2
with: with:
version: '5.15.2' version: '5.15.2'
modules: 'qtcharts' modules: 'qtcharts'
- name: Test CMake build (with GUI) - name: Test CMake build (with GUI)
if: !contains(matrix.os, 'macos') if: contains(matrix.os, 'ubuntu')
run: | run: |
mkdir cmake.output mkdir cmake.output
cd cmake.output cd cmake.output