Skip to content

Clean up unused directories and files #32

Clean up unused directories and files

Clean up unused directories and files #32

Workflow file for this run

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 liblua5.4-dev libmilter-dev libssl-dev
- name: Install Python dependencies
run: sudo pip install pytest
- name: Build OpenARC
run: |
autoreconf -fiv
CFLAGS='-Wall' ./configure
make -j4
- name: Check out miltertest
uses: actions/checkout@v4
with:
repository: flowerysong/miltertest
path: miltertest
- name: Build miltertest
run: |
autoreconf -fiv
./configure
make
working-directory: ${{ github.workspace }}/miltertest
- name: Test OpenARC
run: |
make check
- name: Build OpenARC with clang
run: |
make distclean
CC=clang ./configure
make -j4
- name: Build OpenARC without milter
run: |
make distclean
CC=clang ./configure --disable-filter
make -j4