Skip to content

Commit

Permalink
Added Github Action
Browse files Browse the repository at this point in the history
  • Loading branch information
kisztof committed Aug 22, 2023
1 parent b5315e1 commit a815df0
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions .github/workflows/pgbouncer_postgresql.yml
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

0 comments on commit a815df0

Please sign in to comment.