Skip to content

Rename CI YAML for GitHub workflow #1

Rename CI YAML for GitHub workflow

Rename CI YAML for GitHub workflow #1

Workflow file for this run

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