-
Notifications
You must be signed in to change notification settings - Fork 49
45 lines (32 loc) · 911 Bytes
/
ci.yml
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
name: Continuous Integration
on:
push:
branches:
- "main"
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu] # centos
steps:
- name: Check out repository code
uses: actions/checkout@v1
- name: Install docker
uses: docker-practice/actions-setup-docker@master
timeout-minutes: 12
- name: Install project
run: |
./.ci/install.sh && \
make gen-conf OS_CONTAINER=${{ matrix.os }} && \
make install OS_CONTAINER=${{ matrix.os }}
- name: Check version
run: .ci/check-version.sh
- name: Test
run: make test
- name: Finish
run: |
cat /tmp/krb5-test-${{ matrix.os }}.log && \
ls -lR && \
./script/inspect.sh && \
./.ci/check-version.sh