-
Notifications
You must be signed in to change notification settings - Fork 0
44 lines (41 loc) · 992 Bytes
/
build.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
name: Building & Testing
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}-build
cancel-in-progress: true
on:
workflow_call:
push:
branches: [master]
paths:
- "**"
- "!**.md"
pull_request:
branches: [master]
paths:
- "**"
- "!**.md"
jobs:
linux-amd64:
strategy:
fail-fast: false
matrix:
os: [ubuntu-24.04]
runs-on: ${{ matrix.os }}
timeout-minutes: 8
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
python3 -m pip install meson ninja
- name: Configure and build
run: |
meson setup build/
meson compile -C build/
meson test -C build/ --suite=vs-templ
- name: Archive production artifacts
if: failure()
uses: actions/upload-artifact@v4
with:
name: ubuntu-meson-logs
path: |
build/meson-logs/**/*