Switch to fully-qualified #include #127
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: ci | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macos-latest, ubuntu-20.04, ubuntu-22.04] | |
crypto: [auto] | |
include: | |
- crypto: nettle | |
os: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: "setup linux build environment" | |
if: ${{ startsWith(matrix.os, 'ubuntu') }} | |
run: sudo apt install -y protobuf-compiler libprotobuf-dev libutempter-dev autoconf automake nettle-dev | |
- name: "setup macos build environment" | |
if: ${{ startsWith(matrix.os, 'macos') }} | |
run: brew install protobuf automake | |
- name: "generate build scripts" | |
run: ./autogen.sh | |
- name: ${{ format('configure (crypto {0})', matrix.crypto) }} | |
run: ./configure --enable-compile-warnings=error --enable-examples ${{ (matrix.crypto != 'auto' && format('--with-crypto-library={0}', matrix.crypto)) || '' }} | |
- name: "build" | |
run: make V=1 | |
- name: "test" | |
run: make V=1 check |