-
-
Notifications
You must be signed in to change notification settings - Fork 1
41 lines (37 loc) · 875 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
name: mh CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: install deps
run: sudo make deb-install-deps
- name: make mh
run: make mh
- name: make test
run: make test
build-osx:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Check for Homebrew
run: |
if test ! $(which brew); then
echo "Homebrew not found"
exit 1
fi
- name:
run: brew update
- name:
run: brew install pcre2 cmocka
- name: build
run: |
cc --version
brew --prefix pcre2
brew --prefix cmocka
cc -D_DEFAULT_SOURCE -o mh -D VERSION=\"aa30377\" queue.c mh.c main.c -Wall $(pkg-config --cflags --libs libpcre2-8)