-
Notifications
You must be signed in to change notification settings - Fork 13
54 lines (50 loc) · 1.41 KB
/
Copy pathbuild-and-test.yaml
File metadata and controls
54 lines (50 loc) · 1.41 KB
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
48
49
50
51
52
53
54
# SVAR - build-and-test.yaml
# SPDX-FileCopyrightText: 2021-2025 Arkadiusz Bokowy and contributors
# SPDX-License-Identifier: MIT
name: Build and Test
on:
push:
pull_request:
branches: [ master ]
jobs:
check:
strategy:
matrix:
build-type: [ Debug, Release ]
audio-backend:
- -DENABLE_ALSA=ON
- -DENABLE_ALSA=ON -DENABLE_PIPEWIRE=ON -DENABLE_PORTAUDIO=ON
fail-fast: false
runs-on: ubuntu-latest
steps:
- name: Install Dependencies
run: |
sudo apt update
sudo apt install --yes --quiet --no-install-recommends \
check \
libasound2-dev \
libmp3lame-dev \
libogg-dev \
libpipewire-0.3-dev \
libsndfile1-dev \
libopusenc-dev \
libvorbis-dev \
portaudio19-dev
- uses: actions/checkout@v5
- name: Configure
run: >
cmake
-B ${{ github.workspace }}/build
-DCMAKE_BUILD_TYPE=${{ matrix.build-type }}
-DBUILD_TESTING=ON
${{ matrix.audio-backend }}
-DENABLE_MP3LAME=ON
-DENABLE_SNDFILE=ON
-DENABLE_OPUS=ON
-DENABLE_VORBIS=ON
- name: Build
working-directory: ${{ github.workspace }}/build
run: cmake --build . --config ${{ matrix.build-type }}
- name: Test
working-directory: ${{ github.workspace }}/build
run: ctest -C ${{ matrix.build-type }}