Skip to content

Download and configure JDBC driver #7

Download and configure JDBC driver

Download and configure JDBC driver #7

name: CI
on: push
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
services:
postgres:
image: postgres:latest
env:
POSTGRES_DB: mydb
POSTGRES_USER: user
POSTGRES_PASSWORD: password
POSTGRES_HOST: postgres
POSTGRES_PORT: 5432
ports:
- 5432:5432
options: --name postgres --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Wait for PostgreSQL to be ready
run: |
until pg_isready -h 127.0.0.1 -p 5432 -U myuser; do
echo "Waiting for postgres...";
sleep 3;
done
- name: Run SQL Script
run: |
PGPASSWORD=password psql -h 127.0.0.1 -U user -d mydb -f extras/rdms/full_data_model_pg.sql
- name: Configure SchemaSpy environment
run: |
sudo apt-get update
sudo apt-get install default-jdk -y
sudo apt-get install postgresql-client -y
- name: Download PostgreSQL JDBC Driver
run: |
wget https://jdbc.postgresql.org/download/postgresql-42.2.24.jar -O $HOME/postgresql-jdbc.jar
- name: Execute SchemaSpy
run: |
java -jar extras/rdms/schemaspy-6.2.4.jar -vizjs -configFile extras/rdms/schemaspy-config.properties -meta extras/rdms/schema_meta.xml -debug
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: documentation-artifact
path: public
# deploy:
# runs-on: ubuntu-latest
# needs: documentation
# steps:
# - name: Exécuter SchemaSpy
# run: |
# ls
# echo aaaaaaa
#
# - name: Checkout du code
# uses: actions/checkout@v2
#
# - name: Exécuter SchemaSpy
# run: |
# ls
# echo aaaaaaa
#
# - name: download documentation
# uses: actions/download-artifact@v2
# with:
# name: documentation-artifact
# path: public
#
#
# - name: "Deploy Github Pages"
# uses: JamesIves/[email protected]
# with:
# BRANCH: gh-pages
# FOLDER: public/