Skip to content

Commit

Permalink
Update kerberos-docker.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
glegoux authored Oct 8, 2023
1 parent 8bd5a5a commit 362e5a0
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions .github/workflows/kerberos-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,14 @@ on:
push:
branches:
- "master"

env:
OS_CONTAINER: ubuntu

jobs:
build:
runs-on: ${{ matrix.os }}
runs-on: ubuntu-latest

strategy:
matrix:
os: [ubuntu-latest]
os: [ubuntu, centos]

steps:
- name: Check out repository code
Expand All @@ -25,7 +22,7 @@ jobs:
timeout-minutes: 12

- name: Install project
run: ./.ci/install.sh && make install OS_CONTAINER=${OS_CONTAINER}
run: ./.ci/install.sh && make install OS_CONTAINER=${{ matrix.os }}

- name: Check version
run: .ci/check-version.sh
Expand All @@ -35,7 +32,7 @@ jobs:

- name: Finish
run: |
cat /tmp/krb5-test-${OS_CONTAINER}.log && \
cat /tmp/krb5-test-${{ matrix.os }}.log && \
ls -lR && \
./script/inspect.sh && \
./.ci/check-version.sh
Expand Down

0 comments on commit 362e5a0

Please sign in to comment.