blob: 737860c27650cddb19330d5bd86e6483db962a35 (
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
|
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: kdc-setup-mit
run: sudo ci/kdc-setup-mit
if: matrix.kerberos == 'mit'
- name: test
run: ci/test
env:
COMPILER: ${{ matrix.compiler }}
KERBEROS: ${{ matrix.kerberos }}
|