From 48a22bfb26b1e064ad2ed9a1fb21714ac4c3269e Mon Sep 17 00:00:00 2001 From: "W.C.A. Wijngaards" Date: Thu, 24 Jun 2021 10:32:31 +0200 Subject: [PATCH] analysis workflow, install expat. --- .github/workflows/analysis_ports.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) 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 -- 2.47.3