Skip to content

Commit

Permalink
only for clang
Browse files Browse the repository at this point in the history
  • Loading branch information
bassmang committed Oct 30, 2023
1 parent 4c74a79 commit efdab0e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/vendor_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ jobs:
os: ["ubuntu-22.04", "ubuntu-20.04"]
build_type: ["Debug", "Release"]
compiler:
- { cc: "gcc", cxx: "g++"}
- { cc: "clang", cxx: "clang++"}
- { cc: "gcc", cxx: "g++", stdlib: "" }
- { cc: "clang", cxx: "clang++", stdlib: "-stdlib=libc++" }
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v3
Expand All @@ -34,7 +34,7 @@ jobs:
env:
CC: ${{matrix.compiler.cc}}
CXX: ${{matrix.compiler.cxx}}
CXXFLAGS: "-stdlib=libc++"
CXXFLAGS: ${{matrix.compiler.stdlib}}
run: >
cmake -S . -B build -G Ninja
-DCMAKE_BUILD_TYPE=${{matrix.build_type}}
Expand Down

0 comments on commit efdab0e

Please sign in to comment.