Skip to content

Commit

Permalink
add temporary irods postgres server (#1922)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikkonie committed Sep 6, 2024
1 parent 03697f7 commit 8bd7f98
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,19 @@ jobs:
--health-retries 10
ports:
- 5432:5432
# TODO: Remove temporary iRODS postgres server once on iRODS 4.3
postgres-irods:
image: postgres:11
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
options: >-
--health-cmd "pg_isready -U postgres"
--health-interval 10s
--health-timeout 5s
--health-retries 10
ports:
- 5433:5433
redis:
image: redis
options: >-
Expand All @@ -39,7 +52,8 @@ jobs:
env:
IRODS_AUTHENTICATION_SCHEME: native
IRODS_DEFAULT_HASH_SCHEME: MD5
IRODS_ICAT_DBSERVER: postgres
IRODS_ICAT_DBSERVER: postgres-irods # TODO: Use main postgres on 4.3
IRODS_ICAT_DBPORT: 5433 # TODO: Use main postgres on 4.3
IRODS_ICAT_DBUSER: postgres
IRODS_ICAT_DBPASS: postgres
IRODS_ZONE_NAME: sodarZone
Expand Down

0 comments on commit 8bd7f98

Please sign in to comment.