Parser: Ignore deprecation of xmlParserCtxt members #8
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: "Meson: gcc" | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Build | |
run: | | |
# Prevent blocking apt install on a question during configuring of tzdata. | |
export DEBIAN_FRONTEND=noninteractive | |
sudo apt update | |
sudo apt install libxml2-dev libxml2-utils docbook5-xml docbook-xsl libglibmm-2.4-dev mm-common g++ meson ninja-build python3-setuptools --yes | |
export CC=gcc | |
export CXX=g++ | |
meson setup -Dwarnings=fatal -Dwarning_level=3 -Dwerror=true _build | |
cd _build | |
meson compile | |
- name: Test | |
run: | | |
cd _build | |
meson test | |
- name: Dist | |
run: | | |
sudo apt install git --yes | |
# dist runs setup again so we need to specify CC and CXX again. | |
export CC=gcc | |
export CXX=g++ | |
cd _build | |
meson dist |