Skip to content

Commit

Permalink
disabled installation of Qt dependencies in CI when we only require t…
Browse files Browse the repository at this point in the history
…he headers
  • Loading branch information
firewave committed Jan 13, 2025
1 parent 7fe105c commit a644bde
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/clang-tidy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,7 @@ jobs:
sudo apt-get update
sudo apt-get install -y cmake make
sudo apt-get install -y libpcre3-dev
sudo apt-get install -y libffi7 # work around missing dependency for Qt install step
sudo apt-get install -y libcups2-dev # required for Qt6PrintSupport in CMake since Qt 6.7.3
sudo apt-get install -y libgl-dev # fixes missing dependency for Qt in CMake
- name: Install clang
run: |
Expand All @@ -49,6 +48,7 @@ jobs:
with:
version: ${{ env.QT_VERSION }}
modules: 'qtcharts'
install-deps: false
cache: true

- name: Verify clang-tidy configuration
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/selfcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,14 @@ jobs:
sudo apt-get install clang-14
sudo apt-get install libboost-container-dev
sudo apt-get install valgrind
sudo apt-get install -y libcups2-dev # required for Qt6PrintSupport in CMake since Qt 6.7.3
sudo apt-get install -y libgl-dev # fixes missing dependency for Qt in CMake
- name: Install Qt ${{ env.QT_VERSION }}
uses: jurplel/install-qt-action@v4
with:
version: ${{ env.QT_VERSION }}
modules: 'qtcharts'
install-deps: false
cache: true

# TODO: cache this - perform same build as for the other self check
Expand Down

0 comments on commit a644bde

Please sign in to comment.