File tree Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Original file line number Diff line number Diff line change 1515 strategy :
1616 fail-fast : false
1717 matrix :
18- single_header : [0, 1]
1918 compiler :
19+ - name : clang-14
20+ single_header : 1
21+ install : wget https://apt.llvm.org/llvm.sh && chmod +x llvm.sh && sudo ./llvm.sh 14
22+ cc : " /usr/lib/llvm-14/bin/clang"
23+ cxx : " /usr/lib/llvm-14/bin/clang++"
2024 - name : clang-14
2125 install : wget https://apt.llvm.org/llvm.sh && chmod +x llvm.sh && sudo ./llvm.sh 14
2226 cc : " /usr/lib/llvm-14/bin/clang"
4953 install : sudo apt update && sudo apt-get install -y clang-7
5054 cc : " /usr/lib/llvm-7/bin/clang"
5155 cxx : " /usr/lib/llvm-7/bin/clang++"
56+ - name : gcc-11
57+ single_header : 1
58+ install : sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test && sudo apt update && sudo apt-get install -y gcc-11 g++-11
59+ cc : " /usr/bin/gcc-11"
60+ cxx : " /usr/bin/g++-11"
5261 - name : gcc-11
5362 install : sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test && sudo apt update && sudo apt-get install -y gcc-11 g++-11
5463 cc : " /usr/bin/gcc-11"
7887 env :
7988 CC : ${{ matrix.compiler.cc }}
8089 CXX : ${{ matrix.compiler.cxx }}
81- SINGLE_HEADER : ${{ matrix.single_header }}
90+ SINGLE_HEADER : ${{ matrix.compiler. single_header }}
8291 run : cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
8392
8493 - name : Build Unit Tests
You can’t perform that action at this time.
0 commit comments