aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/build.yaml
blob: 1d889ea5e3d52ae50d0da0bf03b711ce6d00a05d (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
name: build

on:
  push:
    branches-ignore:
      - "debian/**"
      - "pristine-tar"
      - "ubuntu/**"
      - "upstream/**"
    tags:
      - "release/*"
  pull_request:
    branches:
      - master

jobs:
  build:
    runs-on: ubuntu-latest

    env:
      AUTHOR_TESTING: 1
      C_TAP_VERBOSE: 1

    strategy:
      fail-fast: false
      matrix:
        compiler:
          - "gcc"
        kerberos:
          - "mit"

    steps:
      - uses: actions/checkout@v2
      - name: install
        run: sudo ci/install
      - name: test
        run: ci/test
        env:
          COMPILER: ${{ matrix.compiler }}
          KERBEROS: ${{ matrix.kerberos }}