Skip to content

Commit

Permalink
Matrix configuration (os, libsigc++) for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
duvholt committed Sep 20, 2024
1 parent 2962edd commit a37ca8a
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,17 @@ on: [push]

jobs:
build:
name: Linux Latest x64
runs-on: ubuntu-24.04
strategy:
matrix:
os: [ubuntu-22.04, ubuntu-24.04]
libsigcpp: ["libsigc++-2.0-dev"]
include:
# libsigc++-3.0 is not available on ubuntu 22.04
- os: ubuntu-24.04
libsigcpp: "libsigc++-3.0-dev"
runs-on: ${{ matrix.os }}

name: Build on ${{ matrix.os }}

steps:
- uses: actions/checkout@v2
Expand All @@ -15,7 +24,7 @@ jobs:
- name: Installing system libs
run: |
sudo apt update
sudo apt install libkf5plasma-dev extra-cmake-modules qtbase5-dev qtdeclarative5-dev libsigc++-3.0-dev libjsoncpp-dev i3-wm
sudo apt install libkf5plasma-dev extra-cmake-modules qtbase5-dev qtdeclarative5-dev ${{matrix.libsigcpp}} libjsoncpp-dev i3-wm
- name: Configure
run: cmake -DCMAKE_INSTALL_PREFIX=$(kf5-config --prefix) -DCI_ERRORS=on -B build .
Expand Down

0 comments on commit a37ca8a

Please sign in to comment.