Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 13 additions & 2 deletions .github/workflows/c-cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,20 @@ jobs:
git submodule update --init --recursive --depth 1
git submodule status
git submodule foreach --recursive 'echo "== $name =="; git remote -v'



- name: Install Qt5 (Ubuntu)
run: |
sudo apt-get update
sudo apt-get install -y --no-install-recommends \
qtbase5-dev qtbase5-dev-tools qt5-qmake \
qttools5-dev qttools5-dev-tools \
libqt5svg5-dev



- name: Configure with CMake (headless)
run: cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -DSD_BUILD_DESIGNER=OFF -DSD_BUILD_DEMOS=OFF
run: cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -DSD_BUILD_DESIGNER=OFF -DSD_BUILD_DEMOS=OFF -DQt5_DIR=/usr/lib/x86_64-linux-gnu/cmake/Qt5

- name: Build
run: cmake --build build --config Release --parallel
Loading