summaryrefslogtreecommitdiff
path: root/.github/workflows/meson-clang-10.yml
blob: 092c00ef6c303238f560b7abaf4785ef449aeeeb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: "meson: clang 10"

on: [push]

jobs:
  build:

    runs-on: ubuntu-20.04

    steps:
    - uses: actions/checkout@v1
    - name: Build
      run: |
        # Prevent blocking apt install on a question during configuring of tzdata.
        export ENV DEBIAN_FRONTEND=noninteractive
        sudo apt update
        sudo apt install libxml2-utils docbook5-xml docbook-xsl mm-common clang-10 ninja-build python3-setuptools python3-pip --yes
        # Ubuntu 20.04 contains meson 0.53.2, but libsigc++ requires meson >= 0.55.0.
        # Install it with pip3 instead of apt.
        sudo pip3 install "meson>=0.55.0"
        export CXX=clang++-10
        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 CXX again.
        export CXX=clang++-10
        cd _build
        meson dist