Skip to content

Commit

Permalink
Add the libonig5 to the packages to install
Browse files Browse the repository at this point in the history
For some strange reason, travis has started to fail with
PHP 8.2 with error:

php: error while loading shared libraries: libonig.so.5

It was not happening few days ago. Searching out there it
seems that the fix is as simple as apt-installing that library.

It's incredible that they don't have that implemented in their
environments and things like this need to be installed manually.

Any way, fixed in our own Travis test and also in the template
and docs.
  • Loading branch information
stronk7 committed Nov 4, 2023
1 parent 10674c0 commit 83ba789
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions .travis.dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ addons:
packages:
- postgresql-13
- postgresql-client-13
- libonig5

services:
- mysql
Expand Down
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ addons:
packages:
- postgresql-13
- postgresql-client-13
- libonig5

services:
- mysql
Expand Down
1 change: 1 addition & 0 deletions docs/TravisFileExplained.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ addons:
packages:
- postgresql-13
- postgresql-client-13
- libonig5

# Ensure DB and docker services are running.
services:
Expand Down

0 comments on commit 83ba789

Please sign in to comment.