We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 604ff7d commit ebb6673Copy full SHA for ebb6673
1 file changed
.github/workflows/main.yml
@@ -17,7 +17,6 @@ jobs:
17
matrix:
18
os: [ubuntu-latest, windows-latest]
19
build_type: [Debug, Release]
20
- compiler_type: [gcc, clang]
21
exclude:
22
- os: windows-latest
23
build_type: Debug
@@ -44,12 +43,6 @@ jobs:
44
43
if: matrix.os == 'ubuntu-latest'
45
run: |
46
sudo apt install -y libnsl-dev
47
- if [ "${{ matrix.os }}" == "ubuntu-latest" ] && [ "${{ matrix.compiler_type }}" == "clang" ]; then
48
- sudo apt install -y clang
49
- conan profile update settings.compiler=clang default
50
- conan profile update settings.compiler.version=$(clang --version | head -n1 | grep -oE '[0-9]+' | head -n1) default
51
- conan profile update settings.compiler.libcxx=libstdc++11 default
52
- fi
53
54
- name: Cache Conan packages
55
uses: actions/cache@v4
0 commit comments