summaryrefslogtreecommitdiff
path: root/.github/workflows/meson-clang-10.yml
blob: af19f313545339f509872cb85ccf32686c275ab5 (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
name: "CI: 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 mm-common clang-10 meson ninja-build python3-setuptools --yes
        export CXX=clang++-10
        meson -Dwarnings=fatal _build
        cd _build
        # Meson from 0.54.0 understands "meson compile".
        # Ubuntu 20.04 uses meson 0.53.2.
        ninja
    - 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