Skip to content

updated RCS log, ChangeLog #28

updated RCS log, ChangeLog

updated RCS log, ChangeLog #28

Workflow file for this run

name: svcron Ubuntu, Mac OSX CI
on:
push:
paths:
- '**'
- .github/workflows/svcron-c-cpp.yml
- '!.github/workflows/svcron-freebsd.yml'
- '!.github/workflows/svcron-obs.yml'
- '!**/debian/*'
- '!**/svcron.spec.in'
- '!**/*.8'
- '!**/*.5'
- '!**/*.1'
- '!**/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 openssl; fi
if [ "${OS}" = "ubuntu-latest" ] ; then sudo apt-get install automake autoconf libtool libssl-dev; fi
env:
OS: ${{ matrix.host }}
- name: checkout_main
uses: actions/checkout@v4
with:
path: svcron
- name: checkout_qmail
uses: actions/checkout@v4
with:
repository: mbhangui/libqmail
path: libqmail
- name: install_qmail
run: cd libqmail;env CPPFLAGS="-I/opt/homebrew/Cellar/openssl@3/3.3.0/include" LDFLAGS="-L/opt/homebrew/Cellar/openssl@3/3.3.0/lib" ./default.configure; env CPPFLAGS="-I/opt/homebrew/Cellar/openssl@3/3.3.0/include" LDFLAGS="-L/opt/homebrew/Cellar/openssl@3/3.3.0/lib" make; sudo make install-strip
- name: build_svcron
run: |
cd svcron
./default.configure; make
env:
OS: ${{ matrix.host }}