From: W.C.A. Wijngaards Date: Thu, 24 Jun 2021 08:32:31 +0000 (+0200) Subject: analysis workflow, install expat. X-Git-Tag: release-1.13.2rc1~130 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=48a22bfb26b1e064ad2ed9a1fb21714ac4c3269e;p=thirdparty%2Funbound.git analysis workflow, install expat. --- diff --git a/.github/workflows/analysis_ports.yml b/.github/workflows/analysis_ports.yml index a14c22d31..3ca71219c 100644 --- a/.github/workflows/analysis_ports.yml +++ b/.github/workflows/analysis_ports.yml @@ -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