Skip to content

Commit

Permalink
Allow failure on PHP 72.
Browse files Browse the repository at this point in the history
  • Loading branch information
drupol committed Mar 26, 2022
1 parent bbaf70d commit 78175fc
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ jobs:
run: nix build .#${{ matrix.php }}.extensions.tidy

- name: Check that composer PHAR works
continue-on-error: ${{ matrix.php == matrix.allow-failure }}
run: |
nix develop --impure --expr '
let
Expand All @@ -99,6 +100,7 @@ jobs:
' -c composer --version
- name: Validate php.extensions.mysqli default unix socket path
continue-on-error: ${{ matrix.php == matrix.allow-failure }}
run: |
nix develop --impure --expr '
let
Expand All @@ -116,6 +118,7 @@ jobs:
' -c php -r "echo ini_get('mysqli.default_socket') . PHP_EOL;" | grep /run/mysqld/mysqld.sock
- name: Validate php.extensions.pdo_mysql default unix socket path
continue-on-error: ${{ matrix.php == matrix.allow-failure }}
run: |
nix develop --impure --expr '
let
Expand Down

0 comments on commit 78175fc

Please sign in to comment.