forked from OCA/OpenUpgrade
-
Notifications
You must be signed in to change notification settings - Fork 0
138 lines (135 loc) · 4.93 KB
/
test.yml
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
# This workflow will install Python dependencies, run tests and lint with a
# single version of Python. For more information see:
# https://help.github.com/actions/language-and-framework-guides\
# /using-python-with-github-actions
name: Test OpenUpgrade migration
on:
push:
branches: ["15.0*"]
pull_request:
jobs:
test:
runs-on: ubuntu-22.04
env:
DB: "openupgrade"
DB_HOST: "localhost"
DB_PASSWORD: "odoo"
DB_PORT: 5432
DB_USERNAME: "odoo"
DOWNLOADS: https://github.com/OCA/OpenUpgrade/releases/download/databases
ODOO: "./odoo/odoo-bin"
PGHOST: "localhost"
PGPASSWORD: "odoo"
PGUSER: "odoo"
OPENUPGRADE_USE_DEMO: "yes"
steps:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.7
- name: Configure Postgres
uses: harmon758/postgresql-action@v1
with:
postgresql version: "10"
postgresql user: ${DB_USERNAME}
postgresql password: ${DB_PASSWORD}
- name: Wait / Sleep
uses: jakejarvis/[email protected]
with:
time: "10s"
- name: DB Creation
run: createdb $DB
- name: DB Restore
run: |
psql -d $DB -c "DROP SCHEMA IF EXISTS PUBLIC;"
wget -q -O- $DOWNLOADS/14.0.psql | pg_restore -d $DB --no-owner
# TODO: create test data in Odoo 14.0 which does not support yml
# anymore
# Roundtrip to previous release to update the test database with
# additional test data
# - git fetch --depth 2 origin 14.0
# - git reset --hard `git ls-remote \
# | grep refs/heads/14.0 \
# | awk '{print $1}'`
# - pip install -q -r requirements.txt
# Line below may fail quite often due to Travis bug:
# - git reset -q --hard $TRAVIS_COMMIT
# Install Python requirements of target release
- name: Check out Odoo
uses: actions/checkout@v2
with:
repository: odoo/odoo
ref: "15.0"
fetch-depth: 1
path: odoo
- name: Check out OpenUpgrade
uses: actions/checkout@v2
with:
path: openupgrade
- name: Configuration
run: |
sudo apt update
sudo apt install \
expect \
expect-dev \
libevent-dev \
libldap2-dev \
libsasl2-dev \
libxml2-dev \
libxslt1-dev \
nodejs \
python3-lxml \
python3-passlib \
python3-psycopg2 \
python3-serial \
python3-simplejson \
python3-werkzeug \
python3-yaml
- name: Requirements Installation
run: |
sudo npm install -g less less-plugin-clean-css
pip install -q -r odoo/requirements.txt
pip install --ignore-installed \
git+https://github.com/OCA/openupgradelib.git@master
# select modules and perform the upgrade
- name: OpenUpgrade test
run: |
MODULES_OLD=base,$(\
sed -n '/^+========/,$p' \
openupgrade/docsource/modules140-150.rst \
| grep "Done\|Partial\|Nothing" \
| grep -v "theme_" \
| sed -rn 's/((^\| *\|del\| *)|^\| *)([0-9a-z_]*)[ \|].*/\3/g p' \
| sed '/^\s*$/d' \
| paste -d, -s)
MODULES_NEW=base,$(\
sed -n '/^+========/,$p' \
openupgrade/docsource/modules140-150.rst \
| grep "Done\|Partial\|Nothing" \
| grep -v "theme_" \
| sed -rn 's/((^\| *\|new\| *)|^\| *)([0-9a-z_]*)[ \|].*/\3/g p' \
| sed '/^\s*$/d' \
| paste -d, -s)
REQUEST="update ir_module_module set state='uninstalled' \
where name not in ('$(echo $MODULES_OLD | sed -e "s/,/','/g")')"
echo Set the modules as not installable if they are not in the following list : $MODULES_OLD
echo Running $REQUEST
psql $DB -c "$REQUEST"
ADDONS_PATHS="\
$GITHUB_WORKSPACE/odoo/addons \
$GITHUB_WORKSPACE/odoo/odoo/addons \
$GITHUB_WORKSPACE/openupgrade"
echo Execution of Openupgrade with the update of the following modules : $MODULES_NEW
# Silence redundant logs from unlinking records (1 line is enough)
# to prevent log overflow
OPENUPGRADE_TESTS=1 $ODOO \
--addons-path=`echo $ADDONS_PATHS | awk -v OFS="," '$1=$1'` \
--database=$DB \
--db_host=$DB_HOST \
--db_password=$DB_PASSWORD \
--db_port=$DB_PORT \
--db_user=$DB_USERNAME \
--load=base,web,openupgrade_framework \
--log-handler odoo.models.unlink:WARNING \
--stop-after-init \
--update=$MODULES_NEW