-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
51 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
name: Build and Test PgBouncer and PostgreSQL | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
build-and-test: | ||
runs-on: ubuntu-latest | ||
|
||
services: | ||
docker: | ||
image: docker:stable | ||
volumes: | ||
- /var/run/docker.sock:/var/run/docker.sock | ||
options: --privileged | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Install Docker Compose | ||
run: | | ||
sudo curl -L "https://github.com/docker/compose/releases/download/1.29.2/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose | ||
sudo chmod +x /usr/local/bin/docker-compose | ||
- name: Build and Start Containers | ||
run: docker-compose up -d | ||
|
||
- name: Verify PgBouncer is Running | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install -y postgresql-client | ||
count=0 | ||
until PGPASSWORD=password psql -h 127.0.0.1 -p 6432 -U pgbouncer -d pgbouncer -c 'SHOW STATS;' || [[ $count -eq 15 ]]; do | ||
sleep 2 | ||
count=$((count + 1)) | ||
done | ||
if [[ $count -eq 15 ]]; then | ||
echo "Failed to connect to PgBouncer within timeout" | ||
docker logs pgbouncer_container_name # Print PgBouncer logs for debugging | ||
exit 1 | ||
fi | ||
echo "PgBouncer is working!" | ||
- name: Stop Containers | ||
run: docker-compose down |