diff options
author | Côme Chilliet <come.chilliet@nextcloud.com> | 2023-01-05 11:46:31 +0100 |
---|---|---|
committer | Côme Chilliet <come.chilliet@nextcloud.com> | 2023-01-20 11:22:11 +0100 |
commit | 7e0a0240c9aeba8c31d2cd12f47c892af672f903 (patch) | |
tree | 4c3ee5ee9c4245e337a2347cc6ef62d61ccb2a9d /.github | |
parent | 89dbc629ff57bdc7aa4752e0e8bb122beb12a87c (diff) | |
download | nextcloud-server-7e0a0240c9aeba8c31d2cd12f47c892af672f903.tar.gz nextcloud-server-7e0a0240c9aeba8c31d2cd12f47c892af672f903.zip |
Remove PHP version matrix from kerberos test
It runs on a docker image on which we cannot control which PHP version runs.
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/smb-kerberos.yml | 18 |
1 files changed, 1 insertions, 17 deletions
diff --git a/.github/workflows/smb-kerberos.yml b/.github/workflows/smb-kerberos.yml index 8b2490617a9..3783c0ecfc7 100644 --- a/.github/workflows/smb-kerberos.yml +++ b/.github/workflows/smb-kerberos.yml @@ -14,12 +14,7 @@ jobs: smb-kerberos-tests: runs-on: ubuntu-latest - strategy: - fail-fast: false - matrix: - php-versions: ['8.0', '8.1'] - - name: kerberos-php${{ matrix.php-versions }} + name: kerberos steps: - name: Checkout server @@ -65,14 +60,3 @@ jobs: echo $CONTENT CONTENT=$(echo $CONTENT | tr -d '[:space:]') [[ $CONTENT == "testfile" ]] - - - smb-kerberos-summary: - runs-on: ubuntu-latest - needs: smb-kerberos-tests - - if: always() - - steps: - - name: Summary status - run: if ${{ needs.smb-kerberos-tests.result != 'success' }}; then exit 1; fi |