-
Notifications
You must be signed in to change notification settings - Fork 2
136 lines (119 loc) · 4.58 KB
/
run_tests.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
name: Run tests
on:
pull_request:
branches: [ v5_backport ]
types: [ labeled ]
concurrency:
group: ${{ github.workflow }}-${{ github.event.label.name || github.ref }}-${{ github.ref }}
cancel-in-progress: true
env:
VENVS_PATH: /home/ci_replicante/ci_virtualenvs
REPOSITORY_PATH: /home/ci_replicante/src
SCRIPTS_PATH: /home/ci_replicante/ci_scripts
HELP_PATH: /home/ci_replicante/help
CI_REPO: ${{ github.repository }}
CI_PULL_REQUEST: ${{ github.event.number }}
jobs:
tests:
if: ${{ (github.event_name == 'pull_request' && github.event.label.name == 'to be merged') }}
runs-on: [self-hosted, Buda]
strategy:
fail-fast: false
matrix:
python-version: [ "2.7.18", "3.11.4" ]
steps:
- name: 'Set build id'
id: build_id
run: echo "id=$(date +%s)" >> $GITHUB_OUTPUT
- name: Update repositories
run: |
. $SCRIPTS_PATH/update_branches.sh
- name: Checkout ${{ github.repository }}
uses: actions/checkout@v4
with:
path: custom_modules/${{ github.event.repository.name }}
- name: Checkout erp
uses: actions/checkout@v4
with:
path: src/erp
repository: gisce/erp
token: ${{ secrets.RO_GITHUB_ACTIONS_REPOS }}
- name: Prepare virtualenv Python ${{ matrix.python-version }}
env:
BUILD_ID: ${{ steps.build_id.outputs.id }}
ROOT_DIR_SRC: ${{ github.workspace }}/src
run: |
. $SCRIPTS_PATH/load_pyenv.sh
pyenv virtualenv ${{ matrix.python-version }} $BUILD_ID
pyenv activate $BUILD_ID
. $SCRIPTS_PATH/install_packages.sh $ROOT_DIR_SRC
cd $REPOSITORY_PATH/smmwebstg
pip install -e .
cd $REPOSITORY_PATH/twobeatstg
pip install -e .
- name: Update mamba for Python 3
env:
BUILD_ID: ${{ steps.build_id.outputs.id }}
if: matrix.python-version == '3.11.4'
run: |
. $SCRIPTS_PATH/load_pyenv.sh
pyenv activate $BUILD_ID
pip install --upgrade mamba
- name: Link Addons
env:
BUILD_ID: ${{ steps.build_id.outputs.id }}
CUSTOM_MODULES_PATH: ${{ github.workspace }}/custom_modules/
ROOT_DIR_SRC: ${{ github.workspace }}/src
ADDONS_PATH: ${{ github.workspace }}/src/erp/server/bin/addons
run: |
. $SCRIPTS_PATH/load_pyenv.sh
pyenv activate $BUILD_ID
cd $ROOT_DIR_SRC/erp
git apply $HELP_PATH/link_addons.diff
python tools/link_addons.py --skip-relative --base-path $REPOSITORY_PATH/,$CUSTOM_MODULES_PATH
rm $ADDONS_PATH/poweremail
cd $ADDONS_PATH
ln -s $CUSTOM_MODULES_PATH/${{ github.event.repository.name }} ./poweremail
- name: Run Tests
id: run_tests
env:
BUILD_ID: ${{ steps.build_id.outputs.id }}
GITHUB_TOKEN: ${{ secrets.RO_GITHUB_ACTIONS_REPOS }}
ROOT_DIR_SRC: ${{ github.workspace }}/src
ADDONS_PATH: ${{ github.workspace }}/src/erp/server/bin/addons
run: |
. $SCRIPTS_PATH/load_pyenv.sh
pyenv activate $BUILD_ID
. $SCRIPTS_PATH/export_env_vars.sh $ROOT_DIR_SRC
. $SCRIPTS_PATH/run_tests_custom.sh $BUILD_ID $ROOT_DIR_SRC $ADDONS_PATH ${{ github.event.repository.name }}
- name: Remove virtualenv
if: success() || failure()
env:
BUILD_ID: ${{ steps.build_id.outputs.id }}
run: |
. $SCRIPTS_PATH/load_pyenv.sh
pyenv virtualenv-delete -f $BUILD_ID
- name: Publish Unit Test Results 2
uses: EnricoMi/publish-unit-test-result-action@v2
if: always() && matrix.python-version == '2.7.18'
with:
check_name: "PY2TestsResults"
junit_files: "src/${{ steps.build_id.outputs.id }}/*.xml"
- name: Publish Unit Test Results 3
uses: EnricoMi/publish-unit-test-result-action@v2
if: always() && matrix.python-version == '3.11.4'
with:
check_name: "PY3TestsResults"
junit_files: "src/${{ steps.build_id.outputs.id }}/*.xml"
- name: Clean workspace
if: success() || failure()
run: |
cd ${{ github.workspace }}
rm -r *
- name: Set mergeable check
if: steps.run_tests.outcome == 'success' && matrix.python-version == '2.7.18'
uses: ouzi-dev/commit-status-updater@v2
with:
name: "Mergeable"
status: "${{ steps.run_tests.outcome }}"
url: "https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}"