summaryrefslogtreecommitdiff
path: root/.github/workflows/build_test.yml
blob: 2a6f0df9c49e97d773f4f39336a27fbaca72aa0e (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
40
41
42
43
44
---
# vi: ts=2 sw=2 et:
#
name: Build test
on:
  pull_request:
    paths:
      - '**/meson.build'
      - '.github/workflows/**'
      - 'meson_options.txt'
      - 'src/**'
      - 'test/fuzz/**'
      - 'travis-ci/managers/ubuntu-build-check.sh'

jobs:
  build:
    runs-on: ubuntu-18.04
    strategy:
      fail-fast: false
      matrix:
        env:
          # As we use postfixed clang/gcc binaries, we need to override $AR
          # as well, otherwise meson falls back to ar from binutils which
          # doesn't work with LTO
          - { CC: "clang-10", CXX: "clang++-10", AR: "llvm-ar-10" }
          - { CC: "gcc-10", CXX: "g++-10", AR: "gcc-ar-10" }
    env: ${{ matrix.env }}
    steps:
      - name: Repository checkout
        uses: actions/checkout@v1
      - name: Configure custom APT repositories for ${{ env.CC }}
        run: |
          if [[ "$CC" == clang-* ]]; then
            # Latest LLVM stack deb packages provided by https://apt.llvm.org/
            sudo bash -c "$(wget -O - https://apt.llvm.org/llvm.sh)"
            sudo apt-get install clang-10 llvm-10
          else
            # Latest gcc stack deb packages provided by
            # https://launchpad.net/~ubuntu-toolchain-r/+archive/ubuntu/test
            sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
            sudo apt-get install gcc-10
          fi
      - name: Build check (${{ env.CC }})
        run: sudo -E travis-ci/managers/ubuntu-build-check.sh