Meson builds: Embed UAC manifest for dom_update_namespace #11
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: "Autotools: gcc" | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Build | |
run: | | |
sudo apt update | |
sudo apt install libxml2-dev mm-common g++ docbook-xsl | |
export CXX=g++ | |
./autogen.sh --enable-warnings=fatal | |
make | |
- name: Test | |
run: make check | |
- name: Distcheck | |
run: | | |
# distcheck runs configure again so we need to specify CXX again. | |
export CXX=g++ | |
make distcheck |