-
Notifications
You must be signed in to change notification settings - Fork 4
47 lines (39 loc) · 1.15 KB
/
test.fedora.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
on:
workflow_dispatch:
push:
branches: ["**"]
paths-ignore:
- "**/*.md"
- "**/*.yml"
pull_request:
branches: ["**"]
name: Test on Fedora-Linux
jobs:
test-fedora-40-release:
runs-on: ubuntu-latest
container: fedora:40
strategy:
fail-fast: false
matrix:
language: ["cpp"]
steps:
- name: Checkout
uses: actions/[email protected]
- name: Install build dependencies
run: "dnf install -y pipewire-devel make automake git gcc gcc-c++ kernel-devel cmake"
- name: Compile
run: "mkdir build && cd build && cmake .. -Drohrkabel_examples=ON && cmake --build . --config Release"
test-fedora-40-debug:
runs-on: ubuntu-latest
container: fedora:40
strategy:
fail-fast: false
matrix:
language: ["cpp"]
steps:
- name: Checkout
uses: actions/[email protected]
- name: Install build dependencies
run: "dnf install -y pipewire-devel make automake git gcc gcc-c++ kernel-devel cmake"
- name: Compile
run: "mkdir build && cd build && cmake .. -Drohrkabel_examples=ON && cmake --build . --config Debug"