updated installer, instcheck man pages #155
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: ucspi-tcp Ubuntu, Mac OSX CI | |
on: | |
push: | |
paths: | |
- '**/ucspi-tcp-x/**' | |
- .github/workflows/ucspi-tcp-c-cpp.yml | |
- '!**/ucspi-tcp-x/debian/*' | |
- '!**/ucspi-tcp-x/ucspi-tcp.spec.in' | |
- '!**/ucspi-tcp-x/*.1' | |
- '!**/ucspi-tcp-x/*.9' | |
- '!**/doc/*' | |
- '!**.md' | |
workflow_dispatch: | |
jobs: | |
build: | |
name: ${{ matrix.host }}-${{ matrix.config.name }} | |
runs-on: ${{ matrix.host }} | |
strategy: | |
fail-fast: false | |
matrix: | |
host: [ubuntu-latest, macos-latest] | |
steps: | |
- name: extra_packages | |
run: if [ "${OS}" = "macos-latest" ]; then brew install automake autoconf libtool pkgconfig openssl; fi | |
env: | |
OS: ${{ matrix.host }} | |
- name: checkout_ucspi-tcp | |
uses: actions/checkout@v2 | |
with: | |
path: main | |
- name: checkout_qmail | |
uses: actions/checkout@v2 | |
with: | |
repository: mbhangui/libqmail | |
path: libqmail | |
- name: install_qmail | |
run: cd libqmail;env CPPFLAGS="-I/usr/local/opt/[email protected]/include" LDFLAGS="-L/usr/local/opt/[email protected]/lib" ./default.configure; env CPPFLAGS="-I/usr/local/opt/[email protected]/include" LDFLAGS="-L/usr/local/opt/[email protected]/lib" make; sudo make install-strip | |
- name: build_ucspi-tcp | |
run: cd main/ucspi-tcp-x;env CFLAGS="-I/usr/local/opt/[email protected]/include" LDFLAGS="-L/usr/local/opt/[email protected]/lib" ./default.configure;env CFLAGS="-I/usr/local/opt/[email protected]/include" LDFLAGS="-L/usr/local/opt/[email protected]/lib" ./qmake |