Skip to content

Commit

Permalink
Make CI cover Ubuntu 22.04 (with -DLIB_PROTO_MUTATOR_DOWNLOAD_PROTOBU…
Browse files Browse the repository at this point in the history
…F=OFF)

.. with Protobuf 3.12.4
(see https://packages.ubuntu.com/jammy/libprotobuf-dev)

Signed-off-by: Sebastian Pipping <sebastian@pipping.org>
  • Loading branch information
hartwork authored and vitalybuka committed Feb 19, 2025
1 parent 30760d9 commit f6cc599
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/cmake-multi-platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:

jobs:
build:
name: Build (Bundled ${{ matrix.bundled_protobuf }}, ${{ matrix.build_type }})
name: Build (${{ matrix.os }}, bundled ${{ matrix.bundled_protobuf }}, ${{ matrix.build_type }})
runs-on: ${{ matrix.os }}

strategy:
Expand All @@ -31,6 +31,17 @@ jobs:
c_compiler: [clang]
cpp_compiler: [clang++]
bundled_protobuf: ['ON', 'OFF']
include:
- os: ubuntu-22.04
build_type: Release
c_compiler: clang
cpp_compiler: clang++
bundled_protobuf: 'OFF'
- os: ubuntu-22.04
build_type: Debug
c_compiler: clang
cpp_compiler: clang++
bundled_protobuf: 'OFF'

steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit f6cc599

Please sign in to comment.