updated freebsd vmaction script to v1 #90
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: tinydnssec FreeBSD CI | |
on: | |
push: | |
paths: | |
- '**/tinydnssec-x/**' | |
- .github/workflows/tinydnssec-freebsd.yml | |
- '!**/tinydnssec-x/tinydnssec.spec.in' | |
- '!**/tinydnssec-x/debian/*' | |
- '!**/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 tinydnssec | |
id: FreeBSD | |
uses: vmactions/freebsd-vm@v1 | |
with: | |
envs: 'MYTOKEN' | |
usesh: true | |
prepare: pkg install -y curl bash automake autoconf libtool pkgconf libsodium libev | |
run: | | |
cd libqmail; ./default.configure; make; make install-strip | |
cd ../main/tinydnssec-x; ./default.configure; make; make install-strip | |
cd dq-20161210; make; sh ./make-install.sh | |
cd ../curvedns-0.88; ./default.configure; make; make install-strip |