-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (35 loc) · 1.03 KB
/
meson.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
name: Meson Build
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
build:
name: Build and Test on ${{ matrix.os }} with Meson v${{ matrix.meson_version }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, ubuntu-24.04-arm]
meson_version: ["1.4.0"]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Dependencies
uses: amitie10g/install-package@v1.2.5
with:
apt: build-essential libtool pkg-config lv2-dev meson ninja-build
- name: Configure Project
run: meson setup build -Dlv2dir=$HOME/.lv2/
- name: Build
run: meson compile -C build
- name: Install
run: meson install -C build
# - name: Run Tests
# run: meson test -C build/ -v
# - name: Upload Test Log
# uses: actions/upload-artifact@v4
# if: failure()
# with:
# name: ${{ matrix.os }}_Meson_Testlog
# path: builddir/meson-logs/testlog.txt