forked from gdnsd/gdnsd
-
Notifications
You must be signed in to change notification settings - Fork 2
31 lines (29 loc) · 773 Bytes
/
c-cpp.yml
File metadata and controls
31 lines (29 loc) · 773 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
name: C/C++ CI
env:
SLOW_TESTS: 1
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build-devel:
name: Build in Developer Mode
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: install-deps
run: sudo apt -y install ragel libev-dev liburcu-dev libsodium-dev libunwind8-dev libmaxminddb-dev libsocket6-perl libio-socket-inet6-perl libwww-perl libhttp-daemon-perl libnet-dns-perl
- name: autoreconf
run: autoreconf -vif
- name: configure
run: ./configure --enable-developer
- name: make
run: make
- name: make check
run: make check
# - name: make distcheck
# run: make distcheck