CI: changed postgres env vars

Martin Gerhardy 2021-03-22 06:43:57 +01:00
parent 9cf5c9ae89
commit 80f8b690aa
1 changed files with 5 additions and 3 deletions

View File

@ -85,10 +85,10 @@ jobs:
postgres: postgres:
image: postgres:13 image: postgres:13
env: env:
POSTGRES_DB: postgres_db POSTGRES_DB: enginetest
POSTGRES_PASSWORD: postgres_password POSTGRES_PASSWORD: engine
POSTGRES_PORT: 5432 POSTGRES_PORT: 5432
POSTGRES_USER: postgres_user POSTGRES_USER: vengi
ports: ports:
- 5432:5432 - 5432:5432
options: >- options: >-
@ -113,6 +113,8 @@ jobs:
cmake --build . cmake --build .
- name: Test - name: Test
env:
DB_HOST: postgres
run: | run: |
cd build cd build
ctest -V -R tests-animation$ ctest -V -R tests-animation$