forked from vanessa-opensource/vanessa-runner
-
Notifications
You must be signed in to change notification settings - Fork 0
164 lines (139 loc) · 6.12 KB
/
testing.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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
name: Тестирование
on:
push:
pull_request_target:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref_name }}
cancel-in-progress: true
permissions:
checks: write
pull-requests: write
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
oscript_version: ['stable']
v8_version: ['8.3.23.1997', '8.3.24.1548', '8.3.25.1445']
os: [ 'windows-latest', 'ubuntu-latest' ]
locale: ['ru_RU']
steps:
- name: Set Russian locale
if: matrix.os == 'windows-latest'
run: |
powershell -Command "Set-WinUILanguageOverride -Language ru-RU"
powershell -Command "Set-WinUserLanguageList ru-RU -Force"
powershell -Command "Set-Culture ru-RU"
powershell -Command "Set-WinSystemLocale ru-RU"
- name: Verify locale settings
if: matrix.os == 'windows-latest'
run: |
powershell -Command "Get-WinUILanguageOverride"
powershell -Command "Get-WinUserLanguageList"
powershell -Command "Get-Culture"
powershell -Command "Get-WinSystemLocale"
- name: Актуализация
uses: actions/checkout@v4
with:
repository: ${{ github.event.pull_request.head.repo.full_name }}
ref: ${{ github.event.pull_request.head.ref }}
- name: Установка свойств git
shell: bash
run: |
git config --global user.name "GitHub Actions"
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
- name: Вычисление версии OneScript
shell: bash
id: extract_oscript_version
run: |
set -ex
if [ "${{ matrix.oscript_version }}" = "default" ]
then
extracted_version=$(cat packagedef | grep ".ВерсияСреды(" | sed 's|[^"]*"||' | sed -r 's/".+//' || true)
version="${extracted_version:-stable}"
else
version="${{ matrix.oscript_version }}"
fi
echo "version=$version" >> $GITHUB_OUTPUT
- name: Установка OneScript
uses: otymko/[email protected]
with:
version: ${{ steps.extract_oscript_version.outputs.version }}
- name: Установка зависимостей
run: |
opm install opm
opm install -l --dev
- name: Установка дополнительных пакетов
run: opm install add
- name: Установка 1С:Предприятие
if: matrix.v8_version != ''
uses: 1CDevFlow/onec-setup-action@main
with:
type: onec # Тип устанавливаемого приложения
onec_version: ${{ matrix.v8_version }}
cache: false
env:
ONEC_USERNAME: ${{ secrets.ONEC_USERNAME }}
ONEC_PASSWORD: ${{ secrets.ONEC_PASSWORD }}
- name: Подготовка окружения (Linux)
if: matrix.v8_version != '' && matrix.os == 'ubuntu-latest'
run: |
sudo DEBIAN_FRONTEND=noninteractive apt-get install -y locales libwebkit2gtk-4.0-37
sudo ln -s /usr/lib/x86_64-linux-gnu/libenchant-2.so.2 /usr/lib/libenchant.so.1
sudo localedef -i ${{ matrix.locale }} -c -f UTF-8 -A /usr/share/locale/locale.alias ${{ matrix.locale }}.UTF-8
- name: Установка лицензии (Linux)
if: matrix.v8_version != '' && matrix.os == 'ubuntu-latest'
run: |
# Создание каталога
sudo mkdir -p /var/1C/licenses
# Запись лицензии в файл
echo "${{ secrets.ONEC_LICENCE }}" | sudo tee /var/1C/licenses/licence.lic > /dev/null
# Назначение группы владельца каталога
sudo chown root:grp1cv8 /var/1C/licenses/licence.lic
# Назначение прав
sudo chmod 777 -R /var/1C/licenses
shell: bash
env:
ONEC_LICENCE: ${{ secrets.ONEC_LICENCE }}
- name: Создание файла конфигурации conf.cfg (Linux)
if: matrix.v8_version != '' && matrix.os == 'ubuntu-latest'
run: |
sudo mkdir -p /opt/1cv8/conf/
sudo tee /opt/1cv8/conf/conf.cfg > /dev/null <<EOF
DisableUnsafeActionProtection=.*
SystemLanguage=System
EOF
sudo chown root:grp1cv8 /opt/1cv8/conf/conf.cfg
# Назначение прав
sudo chmod 777 -R /opt/1cv8/conf/
- name: Установка лицензии (Windows)
if: matrix.v8_version != '' && matrix.os == 'windows-latest'
run: |
mkdir "C:\ProgramData\1C\licenses" -Force
echo $Env:ONEC_LICENCE | Out-File -FilePath "C:\ProgramData\1C\licenses\licence.lic" -Encoding ascii
shell: pwsh
env:
ONEC_LICENCE: ${{ secrets.ONEC_LICENCE }}
- name: Создание файла конфигурации conf.cfg (Windows)
if: matrix.v8_version != '' && matrix.os == 'windows-latest'
run: |
New-Item -ItemType Directory -Force -Path "C:\Program Files\1cv8\conf"
Set-Content -Path "C:\Program Files\1cv8\conf\conf.cfg" -Value @'
DisableUnsafeActionProtection=.*
SystemLanguage=System
'@
shell: pwsh
- name: Тестирование
uses: coactions/setup-xvfb@v1
continue-on-error: true
with:
run: oscript ./tasks/test.os
- name: Publish Test Report
uses: mikepenz/action-junit-report@v5
with:
report_paths: '**/build/reports/*.xml'
fail_on_failure: true
comment: true
check_name: 'Результаты тестов. ОС: ${{ matrix.os }}. Версия 1С: ${{ matrix.v8_version }}. Версия OneScript: ${{ steps.extract_oscript_version.outputs.version }}'