Skip to content

Commit

Permalink
additional clang config
Browse files Browse the repository at this point in the history
  • Loading branch information
christian-rauch authored and christianrauch committed Feb 17, 2024
1 parent 89a6b84 commit 48cdf6e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ jobs:
matrix:
config:
- { name: "Linux", os: ubuntu-20.04 }
- { name: "Linux (clang)", os: ubuntu-20.04, cc: clang, cxx: clang++ }
- { name: "Windows", os: windows-latest }
- { name: "macOS", os: macos-latest }
steps:
Expand Down Expand Up @@ -74,6 +75,9 @@ jobs:
cmake --build build --target install
- name: build plugin
env:
CC: ${{ matrix.config.cc }}
CXX: ${{ matrix.config.cxx }}
run: |
cmake -B build -GNinja -DCMAKE_BUILD_TYPE=Release -DCMAKE_PREFIX_PATH="${{ env.QTC_PATH }};${{ env.QT_PATH }}" -Dyaml-cpp_DIR=${{ env.YAML_DIR }} -DBUILD_ROSTERMINAL=OFF
cmake --build build --target package
Expand Down

0 comments on commit 48cdf6e

Please sign in to comment.