ezmlm 1.2 #36
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ezmlm FreeBSD | |
on: | |
push: | |
paths: | |
- '**/ezmlm-x/**' | |
- .github/workflows/ezmlm-freebsd.yml | |
- '!**/ezmlm-x/debian/*' | |
- '!**/ezmlm-x/ezmlm.spec.in' | |
- '!**/*.9' | |
- '!**/*.8' | |
- '!**/*.5' | |
- '!**/*.1' | |
- '!**/doc/*' | |
- '!**.md' | |
- '!**/ezmlm-c-cpp.yml' | |
- '!**/ezmlm-obs.yml' | |
workflow_dispatch: | |
jobs: | |
testfreebsd: | |
runs-on: ubuntu-latest | |
name: FreeBSD | |
env: | |
MYTOKEN : ${{ secrets.MYTOKEN }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
path: main | |
- uses: actions/checkout@v4 | |
with: | |
repository: mbhangui/libqmail | |
path: libqmail | |
- name: build ezmlm | |
id: FreeBSD | |
uses: vmactions/freebsd-vm@v1 | |
with: | |
envs: 'MYTOKEN' | |
usesh: true | |
prepare: pkg install -y curl automake autoconf libtool pkgconf | |
run: | | |
cd libqmail; ./default.configure; make; make install-strip | |
cd ../main/ezmlm-x | |
./default.configure | |
./qmake |