-
Notifications
You must be signed in to change notification settings - Fork 12
121 lines (115 loc) · 3.13 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
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=mypassword psql -h 127.0.0.1 -U myuser -d mydb -f extras/rdms/full_data_model_pg.sql
# - name: Upload artifact
# uses: actions/upload-artifact@v4
# with:
# name: postgres_test_sql
# path: postgres_test.sql
#
# documentation:
# runs-on: ubuntu-latest
# needs: build
#
# services:
# postgres:
# image: postgres:14.0
# 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 du code
# uses: actions/checkout@v2
#
# - name: download dump
# uses: actions/download-artifact@v2
# with:
# name: postgres_test_sql
# path: public
#
# - name: Configure l'environnement pour SchemaSpy
# run: |
# sudo apt-get update
# sudo apt-get install default-jdk -y
# sudo apt-get install postgresql-client -y
# sudo apt-get install graphviz -y
# rm -r db
# mkdir db
# mv public/postgres_test.sql .
# PGPASSWORD=password psql -U user -h localhost -p 5432 -d mydb -f postgres_test.sql
#
#
# - name: Exécuter SchemaSpy
# run: |
# java -jar schemaspy-6.2.4.jar -configFile config.file -debug
#
# - name: Upload artifact
# uses: actions/upload-artifact@v2
# 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/