Skip to content

indimail-virtualdomains 3.4.7 #80

indimail-virtualdomains 3.4.7

indimail-virtualdomains 3.4.7 #80

Workflow file for this run

name: procmail Ubuntu, Mac OSX CI
on:
push:
paths:
- '**/procmail-x/**'
- '**/prepare_obs'
- '**/catChangeLog'
- .github/workflows/procmail-c-cpp.yml
- '!**/procmail-x/debian/*'
- '!**/doc/*'
- '!**.md'
workflow_dispatch:
jobs:
build:
name: ${{ matrix.host }}-${{ matrix.config.name }}
runs-on: ${{ matrix.host }}
strategy:
fail-fast: false
matrix:
host: [ubuntu-latest, macos-latest]
steps:
- name: extra_packages
run: |
if [ "${OS}" = "macos-latest" ] ; then brew install automake autoconf libtool pkgconfig; fi
if [ "${OS}" = "ubuntu-latest" ] ; then sudo apt-get install gcc g++ automake autoconf libtool; fi
env:
OS: ${{ matrix.host }}
- name: checkout_main
uses: actions/checkout@v2
- name: build procmail
run: |
cd procmail-x
./default.configure; make
env:
OS: ${{ matrix.host }}