-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
64 additions
and
12 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
name: indimail-mta FreeBSD-bad CI | ||
|
||
on: | ||
push: | ||
paths: | ||
- '**/indimail-mta-x/**' | ||
- '**/libdkim2-x/**' | ||
- '**/libsrs2-x/**' | ||
- .github/workflows/indimail-mta-freebsd-bad.yml | ||
- '!**/indimail-mta-x/indimail-mta.spec.in' | ||
- '!**/libdkim2-x/libdkim2.spec.in' | ||
- '!**/libsrs2-x/libsrs2.spec.in' | ||
- '!**/indimail-mta-x/qmail-perf/*' | ||
- '!**/indimail-mta-x/tests/*' | ||
- '!**/indimail-mta-x/debian/*' | ||
- '!**/libdkim2-x/debian/*' | ||
- '!**/libsrs2-x/debian/*' | ||
- '!**/*.9' | ||
- '!**/*.8' | ||
- '!**/*.5' | ||
- '!**/*.1' | ||
- '!**/doc/*' | ||
- '!**.md' | ||
workflow_dispatch: | ||
|
||
jobs: | ||
testfreebsd: | ||
runs-on: macos-12 | ||
name: FreeBSD | ||
timeout-minutes: 20 # randomly bootloops https://github.com/vmactions/freebsd-vm/issues/74 | ||
env: | ||
MYTOKEN : ${{ secrets.MYTOKEN }} | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
path: main | ||
- uses: actions/checkout@v2 | ||
with: | ||
repository: mbhangui/libqmail | ||
path: libqmail | ||
- name: build indimail-mta | ||
id: FreeBSD | ||
uses: vmactions/freebsd-vm@v0.3.1 | ||
with: | ||
envs: 'MYTOKEN' | ||
usesh: true | ||
prepare: pkg install -y curl automake autoconf libtool pkgconf libidn2 mysql80-client openldap26-client libgsasl base64 | ||
run: | | ||
cd libqmail; ./default.configure; make; make install-strip | ||
cd ../main/libdkim2-x; ./default.configure; make; make install-strip | ||
cd ../libsrs2-x; ./default.configure; make; make install-strip | ||
cd ../indimail-mta-x; ./default.configure; ./qmake |
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