Skip to content

Commit

Permalink
github: fix clang not being found and bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Adspartan committed Dec 10, 2024
1 parent 35b0861 commit 9985c0b
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ jobs:
compiler: g++-9
compiler_c: gcc-9
- platform: ubuntu-20.04
compiler: clang++-9
compiler_c: clang-9
compiler: clang++-10
compiler_c: clang-10
- platform: windows-2019
compiler: msvc2019 ## == vs 16
compiler_c: msvc2019
Expand All @@ -26,6 +26,9 @@ jobs:
chmod +x "${{ runner.workspace }}/linuxdeployqt"
if: ${{ matrix.platform == 'ubuntu-20.04' }}

- name: "dependency: clang (linux)"
run: sudo apt update && sudo apt install clang-10 clang++-10
if: ${{ matrix.platform == 'ubuntu-20.04' && matrix.compiler == 'clang++-10' }}
- name: "dependency: qt5 (linux)"
run: sudo apt update && sudo apt install -y qtbase5-dev qt5-default
if: ${{ matrix.platform == 'ubuntu-20.04' }}
Expand Down

0 comments on commit 9985c0b

Please sign in to comment.