Skip to content

Commit 8eba251

Browse files
Merge pull request #103 from ovcharenko-di/fix/use-ibcmd-pwd
Исправление имени параметра ibcmd, увеличение свободного места на сборщиках GA
2 parents 1162017 + ebb6a2e commit 8eba251

File tree

3 files changed

+16
-5
lines changed

3 files changed

+16
-5
lines changed

.github/workflows/qa.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
sudo apt install wine -y
6363
6464
- name: Установка платформы 1С
65-
uses: ovcharenko-di/onec-setup-action@fix/cache-ring-commands-cfg
65+
uses: 1CDevFlow/onec-setup-action
6666
with:
6767
type: onec # Тип устанавливаемого приложения
6868
onec_version: ${{ matrix.v8_version }}
@@ -79,7 +79,7 @@ jobs:
7979
java-version: '17'
8080

8181
- name: Установка EDT
82-
uses: ovcharenko-di/onec-setup-action@fix/cache-ring-commands-cfg
82+
uses: 1CDevFlow/onec-setup-action
8383
with:
8484
type: edt
8585
edt_version: ${{ matrix.edt_version }}

.github/workflows/testing.yml

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,17 @@ jobs:
2525
locale: ['ru_RU']
2626
fail-fast: false
2727
steps:
28+
- name: Освобождение места
29+
if: startsWith(matrix.os, 'ubuntu')
30+
uses: easimon/maximize-build-space@master
31+
with:
32+
root-reserve-mb: 20480
33+
swap-size-mb: 1024
34+
remove-android: 'true'
35+
remove-haskell: 'true'
36+
remove-codeql: 'true'
37+
remove-docker-images: 'true'
38+
2839
- name: Установка локали
2940
if: matrix.os == startsWith(matrix.os, 'windows')
3041
run: |
@@ -72,7 +83,7 @@ jobs:
7283
sudo apt install wine -y
7384
7485
- name: Установка платформы 1С
75-
uses: ovcharenko-di/onec-setup-action@fix/cache-ring-commands-cfg
86+
uses: 1CDevFlow/onec-setup-action
7687
with:
7788
type: onec # Тип устанавливаемого приложения
7889
onec_version: ${{ matrix.v8_version }}
@@ -97,7 +108,7 @@ jobs:
97108
java-version: '17'
98109

99110
- name: Установка EDT
100-
uses: ovcharenko-di/onec-setup-action@fix/cache-ring-commands-cfg
111+
uses: 1CDevFlow/onec-setup-action
101112
with:
102113
type: edt
103114
edt_version: ${{ matrix.edt_version }}

src/Классы/useIbcmd.os

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@
413413
Если ЗначениеЗаполнено(Пользователь) Тогда
414414
Команда.ДобавитьПараметр(СтрШаблон("--user=%1", Пользователь));
415415
Если ЗначениеЗаполнено(Пароль) Тогда
416-
Команда.ДобавитьПараметр(СтрШаблон("--pwd=%1", Пароль));
416+
Команда.ДобавитьПараметр(СтрШаблон("--password=%1", Пароль));
417417
КонецЕсли;
418418
КонецЕсли;
419419

0 commit comments

Comments
 (0)