mirror of
https://github.com/NLnetLabs/unbound.git
synced 2026-02-02 19:59:28 -05:00
analysis workflow, install expat.
This commit is contained in:
parent
61f8b687ef
commit
48a22bfb26
1 changed files with 6 additions and 2 deletions
8
.github/workflows/analysis_ports.yml
vendored
8
.github/workflows/analysis_ports.yml
vendored
|
|
@ -24,15 +24,19 @@ jobs:
|
|||
# config: "CC=clang --enable-debug --disable-flto"
|
||||
# make_test: "yes"
|
||||
# clang_analysis: "yes"
|
||||
- name: macos
|
||||
- name: GCC on OS X
|
||||
os: macos-latest
|
||||
config: "--enable-debug --disable-flto --with-ssl=/usr/local/opt/openssl"
|
||||
install_expat: "yes"
|
||||
config: "--enable-debug --disable-flto --with-ssl=/usr/local/opt/openssl --with-libexpat=/usr/local/opt/expat"
|
||||
make_test: "yes"
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
with:
|
||||
submodules: false
|
||||
- name: install expat
|
||||
if: ${{ matrix.install_expat == 'yes' }}
|
||||
run: brew install expat
|
||||
- name: configure
|
||||
run: ./configure ${{ matrix.config }}
|
||||
- name: make
|
||||
|
|
|
|||
Loading…
Reference in a new issue