]> source.dussan.org Git - nextcloud-server.git/commitdiff
Remove PHP version matrix from kerberos test
authorCôme Chilliet <come.chilliet@nextcloud.com>
Thu, 5 Jan 2023 10:46:31 +0000 (11:46 +0100)
committerCôme Chilliet <come.chilliet@nextcloud.com>
Fri, 20 Jan 2023 10:22:11 +0000 (11:22 +0100)
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>
.github/workflows/smb-kerberos.yml

index 8b2490617a95fb2bc926b3f8eb5749313ad8ff7a..3783c0ecfc7f59f05848c61588f9fda221b9849e 100644 (file)
@@ -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