-
Notifications
You must be signed in to change notification settings - Fork 1
54 lines (43 loc) · 1.13 KB
/
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
45
46
47
48
49
50
51
52
53
54
name: build
on:
push:
pull_request:
jobs:
flake8:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Install flake8
run: sudo pip install flake8
- name: Lint Python code
run: flake8 --max-line-length=160
check:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: apt update
run: sudo apt update
- name: Install dependencies
run: sudo apt install libbsd-dev libmilter-dev libssl-dev
- name: Install Python dependencies
run: sudo pip install pytest miltertest
- name: Build OpenARC
run: |
autoreconf -fiv
CFLAGS='-Wall -Werror' ./configure
make -j4
- name: Test OpenARC
run: |
make check
- name: Build OpenARC with clang
run: |
make distclean
CC=clang ./configure
make -j4 CFLAGS='-Wall -Werror'
- name: Build OpenARC without milter
run: |
make distclean
CC=clang ./configure --disable-filter
make -j4