Skip to content

Commit

Permalink
Fix CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
sstok committed Apr 11, 2020
1 parent e62c09f commit bce1c1b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ jobs:
image: postgres:9.6
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: search_tests
ports:
- "55432:5432"
Expand Down
3 changes: 2 additions & 1 deletion docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,11 @@ services:

# Storage services
pgsql:
image: postgres:9.6-alpine
image: postgres:9.6
environment:
- POSTGRES_DB=search_tests
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
volumes:
- pg-data:/var/lib/postgresql/data:rw
ports:
Expand Down
4 changes: 2 additions & 2 deletions travis/pgsql.travis.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@
<var name="db_type" value="pdo_pgsql"/>
<var name="db_host" value="pgsql" />
<var name="db_username" value="postgres" />
<var name="db_password" value="" />
<var name="db_password" value="postgres" />
<var name="db_name" value="search_tests" />
<var name="db_port" value="5432"/>

<!-- These parameters are not really used, but they are need for the Doctrine TestUtil -->
<var name="tmpdb_type" value="pdo_pgsql"/>
<var name="tmpdb_host" value="pgsql" />
<var name="tmpdb_username" value="postgres" />
<var name="tmpdb_password" value="" />
<var name="tmpdb_password" value="postgres" />
<var name="tmpdb_port" value="5432"/>
</php>

Expand Down

0 comments on commit bce1c1b

Please sign in to comment.