Skip to content

Commit

Permalink
lipstick
Browse files Browse the repository at this point in the history
  • Loading branch information
artivis committed Mar 15, 2024
1 parent 974a241 commit 8907527
Showing 1 changed file with 18 additions and 14 deletions.
32 changes: 18 additions & 14 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,15 @@ jobs:
matrix:
os: [ubuntu-20.04, ubuntu-22.04]
build_type: [Release, Debug]
compiler: [{
"cc": "gcc",
"cxx": "g++"
}, {
"cc": "clang",
"cxx": "clang++"
}]
compiler: [
{
"cc": "gcc",
"cxx": "g++"
}, {
"cc": "clang",
"cxx": "clang++"
}
]
env:
CC: ${{ matrix.compiler.cc }}
CXX: ${{ matrix.compiler.cxx }}
Expand Down Expand Up @@ -88,13 +90,15 @@ jobs:
runs-on: ${{ matrix.combinations.os }}
strategy:
matrix:
combinations: [{
"os": "windows-2019",
"cmake_generator": "Visual Studio 16 2019"
}, {
"os": "windows-2022",
"cmake_generator": "Visual Studio 17 2022"
}]
combinations: [
{
"os": "windows-2019",
"cmake_generator": "Visual Studio 16 2019"
}, {
"os": "windows-2022",
"cmake_generator": "Visual Studio 17 2022"
}
]
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down

0 comments on commit 8907527

Please sign in to comment.