Skip to content

Commit 32a4871

Browse files
authored
fixed bitnami requirement (#822)
1 parent aaf352c commit 32a4871

7 files changed

+8
-6
lines changed

.github/workflows/client-api-benchmark-evaluations.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Run API + client benchmarks
1+
name: "[valor-service] benchmarks"
22

33
on:
44
push:

.github/workflows/client-api-tests-and-coverage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Run API + client code coverage report
1+
name: "[valor-service] code coverage report"
22

33
on:
44
push:
@@ -24,7 +24,7 @@ jobs:
2424
- name: set up postgres
2525
run: |
2626
docker build ./database -t pgvalor
27-
docker run -p 5432:5432 -e POSTGRES_PASSWORD=password -e POSTGRES_DB=valor -d pgvalor
27+
docker run -p 5432:5432 -e POSTGRES_PASSWORD=password -e POSTGRES_DB=valor -e POSTGRESQL_REPLICATION_USE_PASSFILE=false -d pgvalor
2828
sleep 3
2929
docker build ./migrations -t migrations
3030
docker run -e POSTGRES_PASSWORD=password -e POSTGRES_HOST=localhost -e POSTGRES_DB=valor -e POSTGRES_USERNAME=postgres -e POSTGRES_PORT=5432 --network "host" migrations

.github/workflows/lite-benchmark-evaluations.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Run valor-lite benchmarks
1+
name: "[valor-lite] benchmarks"
22

33
on:
44
push:

.github/workflows/lite-tests-and-coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Run valor-lite code coverage report
1+
name: "[valor-lite] code coverage report"
22

33
on:
44
push:

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ unit-tests:
1313

1414
start-postgres-docker:
1515
docker build -t pgvalor ./database
16-
docker run -p 5432:5432 -e POSTGRES_PASSWORD=password -e POSTGRES_DB=valor -d pgvalor
16+
docker run -p 5432:5432 -e POSTGRES_PASSWORD=password -e POSTGRESQL_REPLICATION_USE_PASSFILE=false -e POSTGRES_DB=valor -d pgvalor
1717

1818
run-migrations:
1919
ifeq ($(shell uname -s),Darwin)

api/.env.testing

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@ POSTGRES_PASSWORD=password
33
POSTGRES_HOST=db
44
POSTGRES_DB=valor
55
POSTGRES_PORT=5432
6+
POSTGRESQL_REPLICATION_USE_PASSFILE=false

docker-compose.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ services:
66
environment:
77
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
88
POSTGRES_DB: ${POSTGRES_DB}
9+
POSTGRESQL_REPLICATION_USE_PASSFILE: false
910
service:
1011
image: ghcr.io/striveworks/valor/valor-service
1112
build: ./api

0 commit comments

Comments
 (0)