-
Notifications
You must be signed in to change notification settings - Fork 4
47 lines (39 loc) · 1.14 KB
/
test.arch.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 Arch-Linux
jobs:
test-arch-release:
runs-on: ubuntu-latest
container: archlinux
strategy:
fail-fast: false
matrix:
language: ["cpp"]
steps:
- name: Checkout
uses: actions/[email protected]
- name: Install build dependencies
run: "pacman --noconfirm -Syu base-devel cmake gcc git make pipewire pipewire-pulse"
- name: Compile
run: "mkdir build && cd build && cmake .. -Drohrkabel_examples=ON && cmake --build . --config Release"
test-arch-debug:
runs-on: ubuntu-latest
container: archlinux
strategy:
fail-fast: false
matrix:
language: ["cpp"]
steps:
- name: Checkout
uses: actions/[email protected]
- name: Install build dependencies
run: "pacman --noconfirm -Syu base-devel cmake gcc git make pipewire pipewire-pulse wireplumber"
- name: Compile
run: "mkdir build && cd build && cmake .. -Drohrkabel_examples=ON && cmake --build . --config Debug"