CI-unixish.yml: fixed syntax error (#3642)
This commit is contained in:
parent
4fb43a3f56
commit
ffae40d2f4
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue