aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorRuss Allbery <eagle@eyrie.org>2020-05-17 19:01:47 -0700
committerRuss Allbery <eagle@eyrie.org>2020-05-17 19:03:55 -0700
commite1714fffa69f30aacf44ccd3be8bd60c3bc1e8c4 (patch)
treece829624a97060d9b71e88dbbedb558d42f290e9 /.github
parentb45efd7ab0b9b77d048566d4441e91e4d85e1757 (diff)
Add Heimdal CI testing
Set up a Heimdal KDC and add Heimdal to the test matrix. Remove some unnecessary configuration from the MIT Kerberos CI configuration. Ensure the user programs are installed for whatever Kerberos we're using, which will enable more of the Perl test suite.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yaml4
1 files changed, 4 insertions, 0 deletions
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml
index 737860c..1904201 100644
--- a/.github/workflows/build.yaml
+++ b/.github/workflows/build.yaml
@@ -28,6 +28,7 @@ jobs:
- "gcc"
kerberos:
- "mit"
+ - "heimdal"
steps:
- uses: actions/checkout@v2
@@ -36,6 +37,9 @@ jobs:
- name: kdc-setup-mit
run: sudo ci/kdc-setup-mit
if: matrix.kerberos == 'mit'
+ - name: kdc-setup-heimdal
+ run: sudo ci/kdc-setup-heimdal
+ if: matrix.kerberos == 'heimdal'
- name: test
run: ci/test
env: