We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b82557 commit bdc203dCopy full SHA for bdc203d
.github/workflows/linux.yaml
@@ -95,10 +95,13 @@ jobs:
95
env:
96
CMAKE_OPTIONS: -DDEV_MODE=ON -DBUILD_TESTING=ON
97
CMAKE_MATROSKA_OPTIONS: -DBUILD_EXAMPLES=ON
98
+ CXX: clang++-7
99
steps:
- - uses: egor-tensin/setup-clang@v1
100
- with:
101
- version: 7
+ - name: install clang-7
+ run: |
102
+ wget -qO - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add -
103
+ sudo add-apt-repository --yes --update "deb http://apt.llvm.org/focal/ llvm-toolchain-focal main"
104
+ sudo DEBIAN_FRONTEND=noninteractive apt-get install -yq --no-install-recommends clang++-7
105
106
- name: list compilers
107
run: dpkg --list | grep compiler
0 commit comments