summaryrefslogtreecommitdiffhomepage
path: root/.github
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2023-07-06 21:52:05 +0200
committerStanislaw Halik <sthalik@misaki.pl>2023-07-06 21:52:05 +0200
commit578cf1a74e815b31de180ad3a59fa3178175ddca (patch)
tree3ec62cdacf02ecb11916fe54568dffbffa703f81 /.github
parent75a924ed22ef3527dae4f4e95091385931604ad1 (diff)
try fix ci
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/cmake.yml6
1 files changed, 5 insertions, 1 deletions
diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml
index e56b6f7d..a863f5ed 100644
--- a/.github/workflows/cmake.yml
+++ b/.github/workflows/cmake.yml
@@ -36,13 +36,17 @@ jobs:
- uses: seanmiddleditch/gha-setup-ninja@master
- name: Install Linux Dependencies
- run: sudo apt update && sudo apt install libprocps-dev libopencv-dev libopencv-dev wine64-tools
+ run: |
+ sudo apt-get update
+ sudo apt-get install libprocps-dev libopencv-dev libopencv-dev wine64-tools
+ sudo apt-get install qttools5-dev qtbase5-dev libqt5serialport5-dev
if: matrix.os == 'ubuntu-latest'
- name: Install Qt
uses: jurplel/install-qt-action@v3
with:
archives: qtbase qtimageformats qtgamepad qttools qtserialport qtmultimedia
+ if: matrix.os != 'ubuntu-latest'
- name: Configure
run: ${{matrix.cmake}} -GNinja -S ${{github.workspace}}/ -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DQt5_DIR=${{env.Qt5_DIR}} -DQt5Gui_DIR=${{env.Qt5_DIR}}/lib/cmake/Qt5Gui