Skip to content

Commit

Permalink
Fixed incorrect db driver in travis settings
Browse files Browse the repository at this point in the history
  • Loading branch information
jamielsharief committed Jul 9, 2020
1 parent 0b71b50 commit d0f763d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ dist: xenial
env:
matrix:
- DB_ENGINE=mysql DB_HOST=localhost DB_USERNAME=root
- DB_ENGINE=pgsql DB_HOST=localhost DB_USERNAME=postgres
- DB_ENGINE=postgres DB_HOST=localhost DB_USERNAME=postgres
services:
- mysql
- postgresql
before_install:
- if [ $DB_ENGINE = 'mysql' ]; then mysql -u root -e 'CREATE DATABASE generate;'; fi
- if [ $DB_ENGINE = 'pgsql' ]; then psql -c 'CREATE DATABASE generate;' -U postgres; fi
- if [ $DB_ENGINE = 'postgres' ]; then psql -c 'CREATE DATABASE generate;' -U postgres; fi
before_script:
- composer install --prefer-source --no-interaction
script:
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
### Fixed

- Fixed bootstrap path
- Fixed incorrect db driver in travis settings

## [3.0.0] - 2020-07-08

Expand Down

0 comments on commit d0f763d

Please sign in to comment.