Skip to content

Commit 78175fc

Browse files
committed
Allow failure on PHP 72.
1 parent bbaf70d commit 78175fc

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/build.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ jobs:
8383
run: nix build .#${{ matrix.php }}.extensions.tidy
8484

8585
- name: Check that composer PHAR works
86+
continue-on-error: ${{ matrix.php == matrix.allow-failure }}
8687
run: |
8788
nix develop --impure --expr '
8889
let
@@ -99,6 +100,7 @@ jobs:
99100
' -c composer --version
100101
101102
- name: Validate php.extensions.mysqli default unix socket path
103+
continue-on-error: ${{ matrix.php == matrix.allow-failure }}
102104
run: |
103105
nix develop --impure --expr '
104106
let
@@ -116,6 +118,7 @@ jobs:
116118
' -c php -r "echo ini_get('mysqli.default_socket') . PHP_EOL;" | grep /run/mysqld/mysqld.sock
117119
118120
- name: Validate php.extensions.pdo_mysql default unix socket path
121+
continue-on-error: ${{ matrix.php == matrix.allow-failure }}
119122
run: |
120123
nix develop --impure --expr '
121124
let

0 commit comments

Comments
 (0)