Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/qa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
sudo apt install wine -y

- name: Установка платформы 1С
uses: ovcharenko-di/onec-setup-action@fix/cache-ring-commands-cfg
uses: 1CDevFlow/onec-setup-action
with:
type: onec # Тип устанавливаемого приложения
onec_version: ${{ matrix.v8_version }}
Expand All @@ -79,7 +79,7 @@ jobs:
java-version: '17'

- name: Установка EDT
uses: ovcharenko-di/onec-setup-action@fix/cache-ring-commands-cfg
uses: 1CDevFlow/onec-setup-action
with:
type: edt
edt_version: ${{ matrix.edt_version }}
Expand Down
15 changes: 13 additions & 2 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,17 @@ jobs:
locale: ['ru_RU']
fail-fast: false
steps:
- name: Освобождение места
if: startsWith(matrix.os, 'ubuntu')
uses: easimon/maximize-build-space@master
with:
root-reserve-mb: 20480
swap-size-mb: 1024
remove-android: 'true'
remove-haskell: 'true'
remove-codeql: 'true'
remove-docker-images: 'true'

- name: Установка локали
if: matrix.os == startsWith(matrix.os, 'windows')
run: |
Expand Down Expand Up @@ -72,7 +83,7 @@ jobs:
sudo apt install wine -y

- name: Установка платформы 1С
uses: ovcharenko-di/onec-setup-action@fix/cache-ring-commands-cfg
uses: 1CDevFlow/onec-setup-action
with:
type: onec # Тип устанавливаемого приложения
onec_version: ${{ matrix.v8_version }}
Expand All @@ -97,7 +108,7 @@ jobs:
java-version: '17'

- name: Установка EDT
uses: ovcharenko-di/onec-setup-action@fix/cache-ring-commands-cfg
uses: 1CDevFlow/onec-setup-action
with:
type: edt
edt_version: ${{ matrix.edt_version }}
Expand Down
2 changes: 1 addition & 1 deletion src/Классы/useIbcmd.os
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@
Если ЗначениеЗаполнено(Пользователь) Тогда
Команда.ДобавитьПараметр(СтрШаблон("--user=%1", Пользователь));
Если ЗначениеЗаполнено(Пароль) Тогда
Команда.ДобавитьПараметр(СтрШаблон("--pwd=%1", Пароль));
Команда.ДобавитьПараметр(СтрШаблон("--password=%1", Пароль));
КонецЕсли;
КонецЕсли;

Expand Down
Loading