Skip to content

Merge pull request #310 from thegushi/fix/issue-182-arcdomain-memleak #3

Merge pull request #310 from thegushi/fix/issue-182-arcdomain-memleak

Merge pull request #310 from thegushi/fix/issue-182-arcdomain-memleak #3

Workflow file for this run

name: CI
on:
push:
branches: [ develop ]
pull_request:
branches: [ develop ]
workflow_dispatch:
jobs:
build-test-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt-get update -q
sudo apt-get install -y \
autoconf automake libtool pkg-config \
libssl-dev libmilter-dev \
lua5.4 liblua5.4-dev
- name: Build miltertest from OpenDKIM
run: |
git clone --depth=1 https://github.com/trusteddomainproject/OpenDKIM.git /tmp/opendkim
cd /tmp/opendkim
autoreconf -fvi
./configure --enable-lua CFLAGS='-g -O2 -Wno-pointer-sign'
make -j$(nproc)
sudo make -C miltertest install
- name: Bootstrap build system
run: autoreconf -fvi
- name: Configure
run: |
./configure --enable-live-tests \
CFLAGS='-g -O2 -Wno-pointer-sign'
- name: Build
run: make -j$(nproc)
- name: Test
run: make check