mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-12 20:27:53 +00:00
[obs] build with both GCC and Clang in Github Actions
This commit is contained in:
parent
a20930e5b6
commit
c67bacbf5b
1 changed files with 4 additions and 1 deletions
5
.github/workflows/build.yml
vendored
5
.github/workflows/build.yml
vendored
|
@ -80,6 +80,9 @@ jobs:
|
|||
|
||||
obs:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
cc: [gcc, clang]
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
with:
|
||||
|
@ -91,7 +94,7 @@ jobs:
|
|||
run: |
|
||||
mkdir obs/build
|
||||
cd obs/build
|
||||
cmake ..
|
||||
CC=/usr/bin/${{ matrix.cc }} cmake ..
|
||||
- name: Build obs plugin
|
||||
run: |
|
||||
cd obs/build
|
||||
|
|
Loading…
Reference in a new issue