updated ChangeLogs #261
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: daemontools FreeBSD CI | |
on: | |
push: | |
paths: | |
- '**/daemontools-x/**' | |
- .github/workflows/daemontools-freebsd.yml | |
- '!**/daemontools-x/debian/*' | |
- '!**/daemontools-x/daemontools.spec.in' | |
- '!**/daemontools-x/*.9' | |
- '!**/daemontools-x/*.8' | |
- '!**/daemontools-x/*.1' | |
- '!**/doc/*' | |
- '!**.md' | |
workflow_dispatch: | |
jobs: | |
testfreebsd: | |
runs-on: macos-12 | |
name: FreeBSD | |
env: | |
MYTOKEN : ${{ secrets.MYTOKEN }} | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
path: main | |
- uses: actions/checkout@v2 | |
with: | |
repository: mbhangui/libqmail | |
path: libqmail | |
- name: build daemontools | |
id: FreeBSD | |
uses: vmactions/[email protected] | |
with: | |
envs: 'MYTOKEN' | |
usesh: true | |
prepare: pkg install -y automake autoconf libtool pkgconf libidn2 | |
run: | | |
cd libqmail; ./default.configure; make; make install-strip | |
cd ../main/daemontools-x; ./default.configure; ./qmake |