moved repository to indimail org #65
Workflow file for this run
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: pam-multi FreeBSD CI | |
on: | |
push: | |
paths: | |
- '**/pam-multi-x/**' | |
- .github/workflows/pam-multi-freebsd.yml | |
- '!**/doc/*' | |
- '!**.md' | |
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 pam-multi | |
id: FreeBSD | |
uses: vmactions/freebsd-vm@v1 | |
with: | |
envs: 'MYTOKEN' | |
usesh: true | |
prepare: pkg install -y curl automake autoconf libtool pkgconf mysql80-server mysql80-client | |
run: | | |
cd libqmail; ./default.configure; make; make install-strip | |
cd ../main/pam-multi-x; ./default.configure; make |