summaryrefslogtreecommitdiff
path: root/.github/workflows/linux.yml
blob: 47f48837f81e1e29302f8e0f23c2c7e34e9ba871 (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
36
37
38
39
name: linux

on: [push, pull_request]

# Set permissions at the job level.
permissions: {}

jobs:
  linux:
    runs-on: ubuntu-20.04
    permissions:
      contents: read
    strategy:
      matrix:
        compiler: [clang, gcc]
    steps:
      - uses: actions/checkout@v2
        with:
          persist-credentials: false
      - uses: actions/setup-python@v2
        with:
          python-version: '3.9'
      - name: Install dependencies
        run: |
          python -m pip install --upgrade meson
          sudo apt install -y \
            doxygen libxcb-xkb-dev valgrind ninja-build \
            libwayland-dev wayland-protocols bison graphviz
      - name: Setup
        run: |
          meson setup build
        env:
          CC: ${{ matrix.compiler }}
      - name: Build
        run: |
          meson compile -C build
      - name: Test
        run:
          meson test -C build --print-errorlogs --setup=valgrind --no-suite python-tests