Fix kerberos-docker.yml #2
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Kerberos Docker | |
on: | |
push: | |
branches: | |
- "master" | |
env: | |
CI: OS_CONTAINER=ubuntu | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
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 install OS_CONTAINER=${OS_CONTAINER} | |
- name: Test | |
run: make test TEST_ON_HOST_MACHINE=yes | |
- name: Finish | |
run: | | |
cat /tmp/krb5-test-${OS_CONTAINER}.log && \ | |
ls -lR && \ | |
./script/inspect.sh && \ | |
./.ci/check-version.sh | |