-
Notifications
You must be signed in to change notification settings - Fork 11
86 lines (76 loc) · 2.2 KB
/
publish_results_model.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
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/