Skip to content

Commit

Permalink
chore: disable fsync in gh action postgres to speed up the tests (#5139)
Browse files Browse the repository at this point in the history
  • Loading branch information
kwasniew committed Oct 24, 2023
1 parent bb13678 commit da2c46d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/build.yaml
Expand Up @@ -24,6 +24,7 @@ jobs:
# Provide the password for postgres
env:
POSTGRES_PASSWORD: postgres
POSTGRES_INITDB_ARGS: "--no-sync"
# Set health checks to wait until postgres has started
ports:
- 5432:5432
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/build_coverage.yaml
Expand Up @@ -24,6 +24,7 @@ jobs:
# Provide the password for postgres
env:
POSTGRES_PASSWORD: postgres
POSTGRES_INITDB_ARGS: "--no-sync"
# Set health checks to wait until postgres has started
ports:
- 5432:5432
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/build_prs_jest_report.yaml
Expand Up @@ -22,6 +22,7 @@ jobs:
# Provide the password for postgres
env:
POSTGRES_PASSWORD: postgres
POSTGRES_INITDB_ARGS: "--no-sync"
# Set health checks to wait until postgres has started
ports:
- 5432:5432
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/build_prs_test_report.yaml
Expand Up @@ -16,6 +16,7 @@ jobs:
# Provide the password for postgres
env:
POSTGRES_PASSWORD: postgres
POSTGRES_INITDB_ARGS: "--no-sync"
# Set health checks to wait until postgres has started
ports:
- 5432:5432
Expand Down

0 comments on commit da2c46d

Please sign in to comment.