-
Notifications
You must be signed in to change notification settings - Fork 90
37 lines (29 loc) · 795 Bytes
/
Copy pathmacos.yml
File metadata and controls
37 lines (29 loc) · 795 Bytes
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
---
name: Test building on macOS
on:
push:
branches:
- master
pull_request:
jobs:
build:
name: build
runs-on: macos-latest
permissions:
contents: read
steps:
- name: Prepare build environment
run: |
brew update
brew install codespell gettext json-glib meson pidgin zlib
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Setup Meson build
run: meson setup build
- name: Build project
run: ninja -C build all
- name: Install build results
run: DESTDIR=$PWD/dist ninja -C build install
- uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
with:
name: "macOS"
path: ./dist